mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-14 02:41:22 +01:00

new file: c/Clang/Clang-5.0.0-GCC-6.3.0-2.27.eb new file: d/DynaPhoPy/DynaPhoPy-1.15.eb new file: l/LLVM/LLVM-5.0.0-GCC-6.3.0-2.27.eb new file: n/Netgen/Netgen-5.3.1.eb new file: n/Netgen/Netgen-6.0-beta.eb new file: n/Netgen/ng.patch new file: s/seekpath/seekpath-1.5.0-Python-2.7.13-base.eb new file: t/Tcl/Tcl-8.6.7-GCC-6.3.0-2.27.eb modified: t/Tk/Tk-8.6.6.eb new file: t/Tk/Tk-8.6.7-GCC-6.3.0-2.27.eb deleted: n/Netgen/Netgen-6.3.eb
41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
easyblock = 'CMakeMake'
|
|
|
|
name = 'LLVM'
|
|
version = '5.0.0'
|
|
|
|
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 compiler)
|
|
to use LLVM as an optimizer and code generator."""
|
|
|
|
toolchain = {'name': 'GCC', 'version': '6.3.0-2.27'}
|
|
|
|
source_urls = ["http://llvm.org/releases/%(version)s"]
|
|
sources = ["llvm-%(version)s.src.tar.xz"]
|
|
|
|
builddependencies = [
|
|
('CMake', '3.9.1', '', True),
|
|
('Python', '3.6.1', '', True),
|
|
]
|
|
|
|
dependencies = [
|
|
('ncurses', '6.0', '', True),
|
|
]
|
|
|
|
configopts = '-DBUILD_SHARED_LIBS=ON '
|
|
# required to install extra tools in bin/
|
|
configopts += "-DLLVM_INSTALL_UTILS=ON "
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/llvm-ar', 'bin/FileCheck'],
|
|
'dirs': ['include/llvm', 'include/llvm-c'],
|
|
}
|
|
|
|
separate_build_dir = True
|
|
|
|
moduleclass = 'compiler'
|