mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-13 10:21:22 +01:00

deleted: a/Anaconda2/Anaconda2-4.4.0.eb deleted: a/Anaconda3/Anaconda3-2019.10.eb deleted: a/Anaconda3/Anaconda3-4.4.0.eb deleted: a/Anaconda3/Anaconda3-5.3.1.eb deleted: a/Autotools/Autotools-20150215-GCC-6.3.0-2.27.eb deleted: a/Autotools/Autotools-20170619.eb deleted: a/Autotools/Autotools-20180311.eb
36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
easyblock = 'CMakeMake'
|
|
|
|
name = 'LLVM'
|
|
version = '3.7.1'
|
|
|
|
homepage = "http://llvm.org/"
|
|
description = """The LLVM Core libraries provide a modern source- and target-independent
|
|
optimizer, along with code generation support for many popular CPUs
|
|
(as well as some less common ones!) These libraries are built around a well
|
|
specified code representation known as the LLVM intermediate representation
|
|
("LLVM IR"). The LLVM Core libraries are well documented, and it is
|
|
particularly easy to invent your own language (or port an existing local_compiler)
|
|
to use LLVM as an optimizer and code generator."""
|
|
|
|
toolchain = {'name': 'foss', 'version': '2015g'}
|
|
toolchainopts = {'cstd': 'gnu++11'}
|
|
|
|
source_urls = ["http://llvm.org/releases/%(version)s"]
|
|
sources = ["llvm-%(version)s.src.tar.xz"]
|
|
|
|
builddependencies = [
|
|
('CMake', '3.3.1'),
|
|
('Python', '2.7.9'),
|
|
]
|
|
|
|
configopts = '-DBUILD_SHARED_LIBS=ON -DCMAKE_EXE_LINKER_FLAGS="$LDFLAGS" '
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/llvm-ar'],
|
|
'dirs': ['include/llvm', 'include/llvm-c'],
|
|
}
|
|
|
|
separate_build_dir = True
|
|
|
|
moduleclass = 'compiler'
|