summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorMatthias Diener <matthias.diener@gmail.com>2018-10-01 16:55:41 -0500
committerLevi Baber <baberlevi@gmail.com>2018-10-01 16:55:41 -0500
commitf38bfde6f36fe29efa5ed5317ed6b4890d8664b3 (patch)
tree8a59fe27ba5df734a32aeb95de073fde22d44f91 /var
parentd031bd7461159da78ad6c65c8acee01cd65c589d (diff)
downloadspack-f38bfde6f36fe29efa5ed5317ed6b4890d8664b3.tar.gz
spack-f38bfde6f36fe29efa5ed5317ed6b4890d8664b3.tar.bz2
spack-f38bfde6f36fe29efa5ed5317ed6b4890d8664b3.tar.xz
spack-f38bfde6f36fe29efa5ed5317ed6b4890d8664b3.zip
nvptx-tools: add new package (#9378)
* nvptx-tools: add new package * Update package.py * Update package.py
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/nvptx-tools/package.py50
1 files changed, 50 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/nvptx-tools/package.py b/var/spack/repos/builtin/packages/nvptx-tools/package.py
new file mode 100644
index 0000000000..4f3f40fb14
--- /dev/null
+++ b/var/spack/repos/builtin/packages/nvptx-tools/package.py
@@ -0,0 +1,50 @@
+##############################################################################
+# Copyright (c) 2013-2018, Lawrence Livermore National Security, LLC.
+# Produced at the Lawrence Livermore National Laboratory.
+#
+# This file is part of Spack.
+# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
+# LLNL-CODE-647188
+#
+# For details, see https://github.com/spack/spack
+# Please also see the NOTICE and LICENSE files for our notice and the LGPL.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License (as
+# published by the Free Software Foundation) version 2.1, February 1999.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
+# conditions of the GNU Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+##############################################################################
+from spack import *
+
+
+class NvptxTools(AutotoolsPackage):
+ """nvptx-tools: A collection of tools for use with nvptx-none GCC
+ toolchains. These tools are necessary when building a version
+ of GCC that enables offloading of OpenMP/OpenACC code to NVIDIA
+ GPUs."""
+
+ homepage = "https://github.com/MentorEmbedded/nvptx-tools"
+ git = "https://github.com/MentorEmbedded/nvptx-tools"
+
+ version('2018-03-01', commit='5f6f343a302d620b0868edab376c00b15741e39e')
+
+ depends_on('binutils')
+ depends_on('cuda')
+
+ def configure_args(self):
+ cuda_dir = self.spec['cuda'].prefix
+
+ config_args = [
+ "--with-cuda-driver-include={0}".format(cuda_dir.include),
+ "--with-cuda-driver-lib={0}".format(cuda_dir.lib64)
+ ]
+
+ return config_args