mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-07 23:42:12 +01:00

new file: m/Mako/Mako-1.1.2-Python-3.6.6-foss-2018a.eb new file: m/Mesa/Mesa-18.1.1-foss-2018a.eb new file: o/OpenMPI/OpenMPI-4.0.4-GCC-9.3.0-without-verbs.eb modified: o/OpenMPI/OpenMPI-4.0.4-GCC-9.3.0.eb new file: o/OpenMPI/OpenMPI-4.0.4-GCCcore-8.3.0.eb new file: u/UCX/UCX-1.8.1-GCCcore-8.3.0.eb modified: v/VTK/VTK-8.1.0-foss-2018a-Python-3.6.6.eb deleted: m/Mako/Mako-1.1.2-Python-3.6.6.eb
40 lines
1.2 KiB
Plaintext
40 lines
1.2 KiB
Plaintext
# JH 2020
|
|
|
|
name = 'LLVM'
|
|
version = '6.0.0'
|
|
|
|
homepage = "https://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'}
|
|
toolchainopts = {'cstd': 'gnu++11'}
|
|
|
|
source_urls = ["https://llvm.org/releases/%(version)s"]
|
|
sources = ["llvm-%(version)s.src.tar.xz"]
|
|
checksums = ['1ff53c915b4e761ef400b803f07261ade637b0c269d99569f18040f3dcee4408']
|
|
|
|
builddependencies = [
|
|
('CMake', '3.16.2', '', True),
|
|
('Python', '2.7.14', '-base', True),
|
|
]
|
|
|
|
dependencies = [
|
|
('ncurses', '6.1', '', True),
|
|
('zlib', '1.2.11', '', True),
|
|
]
|
|
|
|
build_shared_libs = True
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/llvm-ar', 'bin/FileCheck'],
|
|
'dirs': ['include/llvm', 'include/llvm-c'],
|
|
}
|
|
|
|
moduleclass = 'compiler'
|