Spack packages now PEP8 compliant.
This commit is contained in:
@@ -23,32 +23,51 @@
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
##############################################################################
|
||||
from spack import *
|
||||
import os, glob
|
||||
import os
|
||||
|
||||
|
||||
class Llvm(Package):
|
||||
"""The LLVM Project is a collection of modular and reusable compiler and
|
||||
toolchain technologies. Despite its name, LLVM has little to do with
|
||||
traditional virtual machines, though it does provide helpful libraries
|
||||
that can be used to build them. The name "LLVM" itself is not an acronym;
|
||||
it is the full name of the project.
|
||||
toolchain technologies. Despite its name, LLVM has little to do
|
||||
with traditional virtual machines, though it does provide helpful
|
||||
libraries that can be used to build them. The name "LLVM" itself
|
||||
is not an acronym; it is the full name of the project.
|
||||
|
||||
"""
|
||||
homepage = 'http://llvm.org/'
|
||||
url = 'http://llvm.org/releases/3.7.1/llvm-3.7.1.src.tar.xz'
|
||||
|
||||
version('3.0', 'a8e5f5f1c1adebae7b4a654c376a6005', url='http://llvm.org/releases/3.0/llvm-3.0.tar.gz') # currently required by mesa package
|
||||
# currently required by mesa package
|
||||
version('3.0', 'a8e5f5f1c1adebae7b4a654c376a6005',
|
||||
url='http://llvm.org/releases/3.0/llvm-3.0.tar.gz')
|
||||
|
||||
variant('debug', default=False, description="Build a debug version of LLVM, this increases binary size by an order of magnitude, make sure you have 20-30gb of space available to build this")
|
||||
variant('clang', default=True, description="Build the LLVM C/C++/Objective-C compiler frontend")
|
||||
variant('debug', default=False,
|
||||
description="Build a debug version of LLVM, this increases "
|
||||
"binary size by an order of magnitude, make sure you have "
|
||||
"20-30gb of space available to build this")
|
||||
variant('clang', default=True,
|
||||
description="Build the LLVM C/C++/Objective-C compiler frontend")
|
||||
variant('lldb', default=True, description="Build the LLVM debugger")
|
||||
variant('internal_unwind', default=True, description="Build the libcxxabi libunwind")
|
||||
variant('polly', default=True, description="Build the LLVM polyhedral optimization plugin, only builds for 3.7.0+")
|
||||
variant('libcxx', default=True, description="Build the LLVM C++ standard library")
|
||||
variant('compiler-rt', default=True, description="Build the LLVM compiler runtime, including sanitizers")
|
||||
variant('gold', default=True, description="Add support for LTO with the gold linker plugin")
|
||||
variant('shared_libs', default=False, description="Build all components as shared libraries, faster, less memory to build, less stable")
|
||||
variant('link_dylib', default=False, description="Build and link the libLLVM shared library rather than static")
|
||||
variant('all_targets', default=True, description="Build all supported targets, default targets <current arch>,NVPTX,AMDGPU,CppBackend")
|
||||
variant('internal_unwind', default=True,
|
||||
description="Build the libcxxabi libunwind")
|
||||
variant('polly', default=True,
|
||||
description="Build the LLVM polyhedral optimization plugin, "
|
||||
"only builds for 3.7.0+")
|
||||
variant('libcxx', default=True,
|
||||
description="Build the LLVM C++ standard library")
|
||||
variant('compiler-rt', default=True,
|
||||
description="Build LLVM compiler runtime, including sanitizers")
|
||||
variant('gold', default=True,
|
||||
description="Add support for LTO with the gold linker plugin")
|
||||
variant('shared_libs', default=False,
|
||||
description="Build all components as shared libraries, faster, "
|
||||
"less memory to build, less stable")
|
||||
variant('link_dylib', default=False,
|
||||
description="Build and link the libLLVM shared library rather "
|
||||
"than static")
|
||||
variant('all_targets', default=True,
|
||||
description="Build all supported targets, default targets "
|
||||
"<current arch>,NVPTX,AMDGPU,CppBackend")
|
||||
|
||||
# Build dependency
|
||||
depends_on('cmake@2.8.12.2:', type='build')
|
||||
@@ -68,147 +87,147 @@ class Llvm(Package):
|
||||
depends_on('gmp', when='@:3.6.999 +polly')
|
||||
depends_on('isl', when='@:3.6.999 +polly')
|
||||
|
||||
base_url = 'http://llvm.org/releases/%%(version)s/%(pkg)s-%%(version)s.src.tar.xz'
|
||||
llvm_url = base_url % { 'pkg' : 'llvm'}
|
||||
base_url = 'http://llvm.org/releases/%%(version)s/%(pkg)s-%%(version)s.src.tar.xz'
|
||||
llvm_url = base_url % {'pkg': 'llvm'}
|
||||
|
||||
resources = {
|
||||
'compiler-rt' : {
|
||||
'url' : base_url % { 'pkg' : 'compiler-rt'},
|
||||
'destination' : 'projects',
|
||||
'placement' : 'compiler-rt',
|
||||
},
|
||||
'openmp' : {
|
||||
'url' : base_url % { 'pkg' : 'openmp'},
|
||||
'destination' : 'projects',
|
||||
'placement' : 'openmp',
|
||||
},
|
||||
'libcxx' : {
|
||||
'url' : base_url % { 'pkg' : 'libcxx'},
|
||||
'destination' : 'projects',
|
||||
'placement' : 'libcxx',
|
||||
},
|
||||
'libcxxabi' : {
|
||||
'url' : base_url % { 'pkg' : 'libcxxabi'},
|
||||
'destination' : 'projects',
|
||||
'placement' : 'libcxxabi',
|
||||
},
|
||||
'clang' : {
|
||||
'url' : base_url % { 'pkg' : 'cfe'},
|
||||
'destination' : 'tools',
|
||||
'placement' : 'clang',
|
||||
},
|
||||
'clang-tools-extra' : {
|
||||
'url' : base_url % { 'pkg' : 'clang-tools-extra'},
|
||||
'destination' : 'tools/clang/tools',
|
||||
'placement' : 'extra',
|
||||
},
|
||||
'lldb' : {
|
||||
'url' : base_url % { 'pkg' : 'lldb'},
|
||||
'destination' : 'tools',
|
||||
'placement' : 'lldb',
|
||||
},
|
||||
'polly' : {
|
||||
'url' : base_url % { 'pkg' : 'polly'},
|
||||
'destination' : 'tools',
|
||||
'placement' : 'polly',
|
||||
},
|
||||
'llvm-libunwind' : {
|
||||
'url' : base_url % { 'pkg' : 'libunwind'},
|
||||
'destination' : 'projects',
|
||||
'placement' : 'libunwind',
|
||||
},
|
||||
}
|
||||
'compiler-rt': {
|
||||
'url': base_url % {'pkg': 'compiler-rt'},
|
||||
'destination': 'projects',
|
||||
'placement': 'compiler-rt',
|
||||
},
|
||||
'openmp': {
|
||||
'url': base_url % {'pkg': 'openmp'},
|
||||
'destination': 'projects',
|
||||
'placement': 'openmp',
|
||||
},
|
||||
'libcxx': {
|
||||
'url': base_url % {'pkg': 'libcxx'},
|
||||
'destination': 'projects',
|
||||
'placement': 'libcxx',
|
||||
},
|
||||
'libcxxabi': {
|
||||
'url': base_url % {'pkg': 'libcxxabi'},
|
||||
'destination': 'projects',
|
||||
'placement': 'libcxxabi',
|
||||
},
|
||||
'clang': {
|
||||
'url': base_url % {'pkg': 'cfe'},
|
||||
'destination': 'tools',
|
||||
'placement': 'clang',
|
||||
},
|
||||
'clang-tools-extra': {
|
||||
'url': base_url % {'pkg': 'clang-tools-extra'},
|
||||
'destination': 'tools/clang/tools',
|
||||
'placement': 'extra',
|
||||
},
|
||||
'lldb': {
|
||||
'url': base_url % {'pkg': 'lldb'},
|
||||
'destination': 'tools',
|
||||
'placement': 'lldb',
|
||||
},
|
||||
'polly': {
|
||||
'url': base_url % {'pkg': 'polly'},
|
||||
'destination': 'tools',
|
||||
'placement': 'polly',
|
||||
},
|
||||
'llvm-libunwind': {
|
||||
'url': base_url % {'pkg': 'libunwind'},
|
||||
'destination': 'projects',
|
||||
'placement': 'libunwind',
|
||||
},
|
||||
}
|
||||
releases = [
|
||||
{
|
||||
'version' : 'trunk',
|
||||
'repo' : 'http://llvm.org/svn/llvm-project/llvm/trunk',
|
||||
'resources' : {
|
||||
'compiler-rt' : 'http://llvm.org/svn/llvm-project/compiler-rt/trunk',
|
||||
'openmp' : 'http://llvm.org/svn/llvm-project/openmp/trunk',
|
||||
'polly' : 'http://llvm.org/svn/llvm-project/polly/trunk',
|
||||
'libcxx' : 'http://llvm.org/svn/llvm-project/libcxx/trunk',
|
||||
'libcxxabi' : 'http://llvm.org/svn/llvm-project/libcxxabi/trunk',
|
||||
'clang' : 'http://llvm.org/svn/llvm-project/cfe/trunk',
|
||||
'clang-tools-extra' : 'http://llvm.org/svn/llvm-project/clang-tools-extra/trunk',
|
||||
'lldb' : 'http://llvm.org/svn/llvm-project/lldb/trunk',
|
||||
'llvm-libunwind' : 'http://llvm.org/svn/llvm-project/libunwind/trunk',
|
||||
}
|
||||
},
|
||||
{
|
||||
'version' : '3.8.0',
|
||||
'md5':'07a7a74f3c6bd65de4702bf941b511a0',
|
||||
'resources' : {
|
||||
'compiler-rt' : 'd6fcbe14352ffb708e4d1ac2e48bb025',
|
||||
'openmp' : '8fd7cc35d48051613cf1e750e9f22e40',
|
||||
'polly' : '1b3b20f52d34a4024e21a4ea7112caa7',
|
||||
'libcxx' : 'd6e0bdbbee39f7907ad74fd56d03b88a',
|
||||
'libcxxabi' : 'bbe6b4d72c7c5978550d370af529bcf7',
|
||||
'clang' : 'cc99e7019bb74e6459e80863606250c5',
|
||||
'clang-tools-extra' : 'c2344f50e0eea0b402f0092a80ddc036',
|
||||
'lldb' : 'a5da35ed9cc8c8817ee854e3dbfba00e',
|
||||
'llvm-libunwind' : '162ade468607f153cca12be90b5194fa',
|
||||
}
|
||||
},
|
||||
{
|
||||
'version' : '3.7.1',
|
||||
'md5':'bf8b3a2c79e61212c5409041dfdbd319',
|
||||
'resources' : {
|
||||
'compiler-rt' : '1c6975daf30bb3b0473b53c3a1a6ff01',
|
||||
'openmp' : 'b4ad08cda4e5c22e42b66062b140438e',
|
||||
'polly' : '3a2a7367002740881637f4d47bca4dc3',
|
||||
'libcxx' : 'f9c43fa552a10e14ff53b94d04bea140',
|
||||
'libcxxabi' : '52d925afac9f97e9dcac90745255c169',
|
||||
'clang' : '0acd026b5529164197563d135a8fd83e',
|
||||
'clang-tools-extra' : '5d49ff745037f061a7c86aeb6a24c3d2',
|
||||
'lldb' : 'a106d8a0d21fc84d76953822fbaf3398',
|
||||
'llvm-libunwind' : '814bd52c9247c5d04629658fbcb3ab8c',
|
||||
}
|
||||
},
|
||||
{
|
||||
'version' : '3.7.0',
|
||||
'md5':'b98b9495e5655a672d6cb83e1a180f8e',
|
||||
'resources' : {
|
||||
'compiler-rt' : '383c10affd513026f08936b5525523f5',
|
||||
'openmp' : 'f482c86fdead50ba246a1a2b0bbf206f',
|
||||
'polly' : '32f93ffc9cc7e042df22089761558f8b',
|
||||
'libcxx' : '46aa5175cbe1ad42d6e9c995968e56dd',
|
||||
'libcxxabi' : '5aa769e2fca79fa5335cfae8f6258772',
|
||||
'clang' : '8f9d27335e7331cf0a4711e952f21f01',
|
||||
'clang-tools-extra' : 'd5a87dacb65d981a427a536f6964642e',
|
||||
'lldb' : 'e5931740400d1dc3e7db4c7ba2ceff68',
|
||||
'llvm-libunwind' : '9a75392eb7eb8ed5c0840007e212baf5',
|
||||
}
|
||||
},
|
||||
{
|
||||
'version' : '3.6.2',
|
||||
'md5':'0c1ee3597d75280dee603bae9cbf5cc2',
|
||||
'resources' : {
|
||||
'compiler-rt' : 'e3bc4eb7ba8c39a6fe90d6c988927f3c',
|
||||
'openmp' : '65dd5863b9b270960a96817e9152b123',
|
||||
'libcxx' : '22214c90697636ef960a49aef7c1823a',
|
||||
'libcxxabi' : '17518e361e4e228f193dd91e8ef54ba2',
|
||||
'clang' : 'ff862793682f714bb7862325b9c06e20',
|
||||
'clang-tools-extra' : '3ebc1dc41659fcec3db1b47d81575e06',
|
||||
'lldb' : '51e5eb552f777b950bb0ff326e60d5f0',
|
||||
}
|
||||
},
|
||||
{
|
||||
'version' : '3.5.1',
|
||||
'md5':'2d3d8004f38852aa679e5945b8ce0b14',
|
||||
'resources' : {
|
||||
'compiler-rt' : 'd626cfb8a9712cb92b820798ab5bc1f8',
|
||||
'openmp' : '121ddb10167d7fc38b1f7e4b029cf059',
|
||||
'libcxx' : '406f09b1dab529f3f7879f4d548329d2',
|
||||
'libcxxabi' : 'b22c707e8d474a99865ad3c521c3d464',
|
||||
'clang' : '93f9532f8f7e6f1d8e5c1116907051cb',
|
||||
'clang-tools-extra' : 'f13f31ed3038acadc6fa63fef812a246',
|
||||
'lldb' : 'cc5ea8a414c62c33e760517f8929a204',
|
||||
}
|
||||
},
|
||||
]
|
||||
{
|
||||
'version': 'trunk',
|
||||
'repo': 'http://llvm.org/svn/llvm-project/llvm/trunk',
|
||||
'resources': {
|
||||
'compiler-rt': 'http://llvm.org/svn/llvm-project/compiler-rt/trunk',
|
||||
'openmp': 'http://llvm.org/svn/llvm-project/openmp/trunk',
|
||||
'polly': 'http://llvm.org/svn/llvm-project/polly/trunk',
|
||||
'libcxx': 'http://llvm.org/svn/llvm-project/libcxx/trunk',
|
||||
'libcxxabi': 'http://llvm.org/svn/llvm-project/libcxxabi/trunk',
|
||||
'clang': 'http://llvm.org/svn/llvm-project/cfe/trunk',
|
||||
'clang-tools-extra': 'http://llvm.org/svn/llvm-project/clang-tools-extra/trunk',
|
||||
'lldb': 'http://llvm.org/svn/llvm-project/lldb/trunk',
|
||||
'llvm-libunwind': 'http://llvm.org/svn/llvm-project/libunwind/trunk',
|
||||
}
|
||||
},
|
||||
{
|
||||
'version': '3.8.0',
|
||||
'md5': '07a7a74f3c6bd65de4702bf941b511a0',
|
||||
'resources': {
|
||||
'compiler-rt': 'd6fcbe14352ffb708e4d1ac2e48bb025',
|
||||
'openmp': '8fd7cc35d48051613cf1e750e9f22e40',
|
||||
'polly': '1b3b20f52d34a4024e21a4ea7112caa7',
|
||||
'libcxx': 'd6e0bdbbee39f7907ad74fd56d03b88a',
|
||||
'libcxxabi': 'bbe6b4d72c7c5978550d370af529bcf7',
|
||||
'clang': 'cc99e7019bb74e6459e80863606250c5',
|
||||
'clang-tools-extra': 'c2344f50e0eea0b402f0092a80ddc036',
|
||||
'lldb': 'a5da35ed9cc8c8817ee854e3dbfba00e',
|
||||
'llvm-libunwind': '162ade468607f153cca12be90b5194fa',
|
||||
}
|
||||
},
|
||||
{
|
||||
'version': '3.7.1',
|
||||
'md5': 'bf8b3a2c79e61212c5409041dfdbd319',
|
||||
'resources': {
|
||||
'compiler-rt': '1c6975daf30bb3b0473b53c3a1a6ff01',
|
||||
'openmp': 'b4ad08cda4e5c22e42b66062b140438e',
|
||||
'polly': '3a2a7367002740881637f4d47bca4dc3',
|
||||
'libcxx': 'f9c43fa552a10e14ff53b94d04bea140',
|
||||
'libcxxabi': '52d925afac9f97e9dcac90745255c169',
|
||||
'clang': '0acd026b5529164197563d135a8fd83e',
|
||||
'clang-tools-extra': '5d49ff745037f061a7c86aeb6a24c3d2',
|
||||
'lldb': 'a106d8a0d21fc84d76953822fbaf3398',
|
||||
'llvm-libunwind': '814bd52c9247c5d04629658fbcb3ab8c',
|
||||
}
|
||||
},
|
||||
{
|
||||
'version': '3.7.0',
|
||||
'md5': 'b98b9495e5655a672d6cb83e1a180f8e',
|
||||
'resources': {
|
||||
'compiler-rt': '383c10affd513026f08936b5525523f5',
|
||||
'openmp': 'f482c86fdead50ba246a1a2b0bbf206f',
|
||||
'polly': '32f93ffc9cc7e042df22089761558f8b',
|
||||
'libcxx': '46aa5175cbe1ad42d6e9c995968e56dd',
|
||||
'libcxxabi': '5aa769e2fca79fa5335cfae8f6258772',
|
||||
'clang': '8f9d27335e7331cf0a4711e952f21f01',
|
||||
'clang-tools-extra': 'd5a87dacb65d981a427a536f6964642e',
|
||||
'lldb': 'e5931740400d1dc3e7db4c7ba2ceff68',
|
||||
'llvm-libunwind': '9a75392eb7eb8ed5c0840007e212baf5',
|
||||
}
|
||||
},
|
||||
{
|
||||
'version': '3.6.2',
|
||||
'md5': '0c1ee3597d75280dee603bae9cbf5cc2',
|
||||
'resources': {
|
||||
'compiler-rt': 'e3bc4eb7ba8c39a6fe90d6c988927f3c',
|
||||
'openmp': '65dd5863b9b270960a96817e9152b123',
|
||||
'libcxx': '22214c90697636ef960a49aef7c1823a',
|
||||
'libcxxabi': '17518e361e4e228f193dd91e8ef54ba2',
|
||||
'clang': 'ff862793682f714bb7862325b9c06e20',
|
||||
'clang-tools-extra': '3ebc1dc41659fcec3db1b47d81575e06',
|
||||
'lldb': '51e5eb552f777b950bb0ff326e60d5f0',
|
||||
}
|
||||
},
|
||||
{
|
||||
'version': '3.5.1',
|
||||
'md5': '2d3d8004f38852aa679e5945b8ce0b14',
|
||||
'resources': {
|
||||
'compiler-rt': 'd626cfb8a9712cb92b820798ab5bc1f8',
|
||||
'openmp': '121ddb10167d7fc38b1f7e4b029cf059',
|
||||
'libcxx': '406f09b1dab529f3f7879f4d548329d2',
|
||||
'libcxxabi': 'b22c707e8d474a99865ad3c521c3d464',
|
||||
'clang': '93f9532f8f7e6f1d8e5c1116907051cb',
|
||||
'clang-tools-extra': 'f13f31ed3038acadc6fa63fef812a246',
|
||||
'lldb': 'cc5ea8a414c62c33e760517f8929a204',
|
||||
}
|
||||
},
|
||||
]
|
||||
|
||||
for release in releases:
|
||||
if release['version'] == 'trunk' :
|
||||
if release['version'] == 'trunk':
|
||||
version(release['version'], svn=release['repo'])
|
||||
|
||||
for name, repo in release['resources'].items():
|
||||
@@ -230,18 +249,19 @@ class Llvm(Package):
|
||||
|
||||
def install(self, spec, prefix):
|
||||
env['CXXFLAGS'] = self.compiler.cxx11_flag
|
||||
cmake_args = [ arg for arg in std_cmake_args if 'BUILD_TYPE' not in arg ]
|
||||
cmake_args = [arg for arg in std_cmake_args if 'BUILD_TYPE' not in arg]
|
||||
|
||||
build_type = 'RelWithDebInfo' if '+debug' in spec else 'Release'
|
||||
cmake_args.extend([
|
||||
'..',
|
||||
'-DCMAKE_BUILD_TYPE=' + build_type,
|
||||
'-DLLVM_REQUIRES_RTTI:BOOL=ON',
|
||||
'-DCLANG_DEFAULT_OPENMP_RUNTIME:STRING=libomp',
|
||||
'-DPYTHON_EXECUTABLE:PATH=%s/bin/python' % spec['python'].prefix ])
|
||||
'..',
|
||||
'-DCMAKE_BUILD_TYPE=' + build_type,
|
||||
'-DLLVM_REQUIRES_RTTI:BOOL=ON',
|
||||
'-DCLANG_DEFAULT_OPENMP_RUNTIME:STRING=libomp',
|
||||
'-DPYTHON_EXECUTABLE:PATH=%s/bin/python' % spec['python'].prefix])
|
||||
|
||||
if '+gold' in spec:
|
||||
cmake_args.append('-DLLVM_BINUTILS_INCDIR=' + os.path.join( spec['binutils'].prefix, 'include'))
|
||||
cmake_args.append('-DLLVM_BINUTILS_INCDIR=' +
|
||||
os.path.join(spec['binutils'].prefix, 'include'))
|
||||
if '+polly' in spec:
|
||||
cmake_args.append('-DLINK_POLLY_INTO_TOOLS:Bool=ON')
|
||||
else:
|
||||
@@ -265,7 +285,7 @@ def install(self, spec, prefix):
|
||||
if '+link_dylib' in spec:
|
||||
cmake_args.append('-DLLVM_LINK_LLVM_DYLIB:Bool=ON')
|
||||
|
||||
if '+all_targets' not in spec: # all is default on cmake
|
||||
if '+all_targets' not in spec: # all is default on cmake
|
||||
targets = ['CppBackend', 'NVPTX', 'AMDGPU']
|
||||
if 'x86' in spec.architecture.target.lower():
|
||||
targets.append('X86')
|
||||
@@ -279,13 +299,16 @@ def install(self, spec, prefix):
|
||||
'power' in spec.architecture.target.lower()):
|
||||
targets.append('PowerPC')
|
||||
|
||||
cmake_args.append('-DLLVM_TARGETS_TO_BUILD:Bool=' + ';'.join(targets))
|
||||
cmake_args.append(
|
||||
'-DLLVM_TARGETS_TO_BUILD:Bool=' + ';'.join(targets))
|
||||
|
||||
if '+clang' not in spec:
|
||||
if '+clang' not in spec:
|
||||
if '+clang_extra' in spec:
|
||||
raise SpackException('The clang_extra variant requires the clang variant to be selected')
|
||||
raise SpackException(
|
||||
'The clang_extra variant requires the `+clang` variant.')
|
||||
if '+lldb' in spec:
|
||||
raise SpackException('The lldb variant requires the clang variant to be selected')
|
||||
raise SpackException(
|
||||
'The lldb variant requires the `+clang` variant')
|
||||
|
||||
with working_dir('spack-build', create=True):
|
||||
cmake(*cmake_args)
|
||||
|
Reference in New Issue
Block a user