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

new file: b/Boost/Boost-1.68.0-gompi-2019.01-Python-2.7.15.eb new file: b/Boost/Boost-1.68.0-gompi-2019.01-serial.eb new file: b/Boost/Boost-1.68.0-gompi-2019.01.eb new file: b/Boost/Boost-1.68.0-gompi-2019.02-Python-2.7.15.eb new file: c/Clang/Clang-7.0.1-gompi-2019.02.eb new file: f/FFTW/FFTW-3.3.8-GCC-8.1.0-2.30.eb new file: f/FFTW/FFTW-3.3.8-gompi-2019.02.eb new file: g/GMP/GMP-6.1.2-gompi-2019.01.eb new file: g/gompi/gompi-2019.01.eb new file: g/gompi/gompi-2019.02.eb new file: h/HDF5/HDF5-1.10.4-GCC-8.1.0-2.30-serial.eb new file: h/HDF5/HDF5-1.10.4-gompi-2019.02-serial.eb new file: h/h5py/h5py-2.7.1-gompi-2019.01-Py-2.7.eb new file: h/hwloc/hwloc-1.11.7-GCC-7.3.0-2.30.eb new file: h/hwloc/hwloc-1.11.7-GCC-8.1.0-2.30.eb modified: m/mpi4py/mpi4py-3.0.0-Py-2.7.eb new file: m/mpi4py/mpi4py-3.0.0-gompi-2019.01-Py-2.7.eb new file: n/numactl/numactl-2.0.11-GCC-7.3.0-2.30.eb new file: n/numactl/numactl-2.0.11-GCC-8.1.0-2.30.eb new file: o/OpenBLAS/OpenBLAS-0.2.20-GCC-8.1.0-2.30.eb new file: o/OpenBLAS/OpenBLAS-0.2.20-gompi-2019.02.eb new file: o/OpenMPI/OpenMPI-2.1.1-GCC-7.3.0-2.30.eb new file: o/OpenMPI/OpenMPI-2.1.1-GCC-8.1.0-2.30.eb new file: p/Python/Python-2.7.15-gompi-2019.01.eb new file: p/Python/Python-2.7.15-gompi-2019.02.eb modified: t/TRIQS/TRIQS-1.4.1-foss-2017a.eb deleted: s/sqsgenerator/sqsgenerator-20180226-Py-3.6.eb deleted: s/sqsgenerator/sqsgenerator-20180823-Py-3.6-v2.eb deleted: s/sqsgenerator/sqsgenerator-20180823-Py-3.6.eb deleted: t/TRIQS/TRIQS-2.0-foss-2017a.eb
40 lines
987 B
Plaintext
40 lines
987 B
Plaintext
# IT4Innovations 2019
|
|
|
|
name = 'Clang'
|
|
version = '7.0.1'
|
|
|
|
homepage = 'http://clang.llvm.org/'
|
|
description = """C, C++, Objective-C compiler, based on LLVM. Does not
|
|
include C++ standard library -- use libstdc++ from GCC."""
|
|
|
|
# Clang also depends on libstdc++ during runtime, but this dependency is
|
|
# already specified as the toolchain.
|
|
toolchain = {'name': 'gompi', 'version': '2019.02'}
|
|
# Do not set optarch to True: it will cause the build to fail
|
|
toolchainopts = {'optarch': False}
|
|
|
|
source_urls = ["http://llvm.org/releases/%(version)s"]
|
|
sources = [
|
|
'llvm-%(version)s.src.tar.xz',
|
|
'cfe-%(version)s.src.tar.xz',
|
|
'compiler-rt-%(version)s.src.tar.xz',
|
|
'polly-%(version)s.src.tar.xz',
|
|
'openmp-%(version)s.src.tar.xz',
|
|
]
|
|
|
|
dependencies = [
|
|
('GMP', '6.1.2'),
|
|
]
|
|
|
|
builddependencies = [
|
|
('CMake', '3.13.1', '', True),
|
|
('Python', '2.7.15'),
|
|
('libxml2', '2.9.4', '', True),
|
|
]
|
|
|
|
assertions = True
|
|
usepolly = True
|
|
skip_all_tests = True
|
|
|
|
moduleclass = 'compiler'
|