easyconfigs-it4i/l/LLVM/LLVM-8.0.1-GCCcore-9.3.0.eb
Josef Hrabal d9bcd66c7d new file: c/CGAL/CGAL-4.14.1-foss-2020a-Python-3.7.8.eb
new file:   l/LLVM/LLVM-6.0.0-GCCcore-9.3.0.eb
	new file:   l/LLVM/LLVM-8.0.1-GCCcore-9.3.0.eb
	new file:   m/Mako/Mako-1.0.6-GCCcore-9.3.0-Python-2.7.18.eb
	new file:   m/Mesa/Mesa-18.1.1-foss-2020a.eb
	new file:   m/Mesa/Mesa-18.3.6-GCCcore-9.3.0.eb
	modified:   o/OpenFOAM/OpenFOAM-7-foss-2020a.eb
	modified:   p/ParaView/ParaView-5.6.2-foss-2020a-Python-3.7.8-mpi.eb
	modified:   r/R/R-4.0.0-foss-2020a.eb
2020-08-06 09:52:46 +02:00

41 lines
1.2 KiB
Plaintext

# JH 2020
name = 'LLVM'
version = '8.0.1'
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': 'GCCcore', 'version': '9.3.0'}
toolchainopts = {'cstd': 'gnu++11'}
source_urls = ['https://github.com/llvm/llvm-project/releases/download/llvmorg-%(version)s']
sources = ['llvm-%(version)s.src.tar.xz']
checksums = ['44787a6d02f7140f145e2250d56c9f849334e11f9ae379827510ed72f12b75e7']
builddependencies = [
('binutils', '2.34'),
('CMake', '3.16.4'),
('Python', '3.7.8'),
]
dependencies = [
('ncurses', '6.2'),
('zlib', '1.2.11'),
]
build_shared_libs = True
sanity_check_paths = {
'files': ['bin/llvm-ar', 'bin/FileCheck'],
'dirs': ['include/llvm', 'include/llvm-c'],
}
moduleclass = 'compiler'