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

new file: a/AOCC/AOCC-4.1.0-GCCcore-12.2.0.eb new file: a/AOCL/AOCL-4.1.0-CCcore-12.2.0.eb new file: a/Amber/Amber-22.4-foss-2022a-AmberTools-23-CUDA-11.7.0.eb new file: c/Clang/Clang-17.0.2-GCCcore-12.2.0-CUDA-12.2.0.eb new file: c/Clang/Clang-17.0.2-GCCcore-12.2.0.eb new file: g/GROMACS/GROMACS-2023-foss-2022a-CUDA-12.0.0-PLUMED-2.9.0.eb new file: g/GROMACS/GROMACS-2023.3-foss-2022a-CUDA-12.0.0-v2.eb new file: l/LAMMPS/LAMMPS-15Jun2023-foss-2022a-kokkos-sm80.eb new file: l/LAMMPS/LAMMPS-2Aug2023-foss-2022a-kokkos-sm80.eb new file: l/LAMMPS/LAMMPS-2Aug2023-foss-2022a-kokkos.eb new file: l/LAMMPS/LAMMPS-2Aug2023_update1-foss-2021b-CUDA-12.2.0-kokkos.eb new file: l/LAMMPS/LAMMPS-2Aug2023_update1-foss-2021b-kokkos.eb new file: m/MATLAB/MATLAB-2023b.eb new file: n/NCCL/NCCL-2.18.3-GCCcore-11.3.0-CUDA-12.2.0.eb new file: o/OVITO/OVITO-3.9.2-gompi-2022a-basic.eb new file: o/OVITO/OVITO-3.9.2-gompi-2022b-basic.eb new file: o/OpenMolcas/OpenMolcas-23.06-intel-2022a-noGA.eb modified: o/OpenMolcas/OpenMolcas-23.06-intel-2022a.eb new file: p/PLUMED/PLUMED-2.9.0-foss-2022a.eb new file: q/Qt6/Qt6-6.5.3-GCCcore-12.2.0.eb new file: "q/Qt6/\\" new file: u/UCX-CUDA/UCX-CUDA-1.14.1-GCCcore-11.3.0-CUDA-12.2.0.eb
55 lines
1.6 KiB
Plaintext
55 lines
1.6 KiB
Plaintext
# IT4Innovations
|
|
# LK 2023
|
|
|
|
name = 'Clang'
|
|
version = '17.0.2'
|
|
versionsuffix = '-CUDA-12.2.0'
|
|
|
|
homepage = 'https://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': 'GCCcore', 'version': '12.2.0'}
|
|
|
|
source_urls = ["https://github.com/llvm/llvm-project/releases/download/llvmorg-%(version)s"]
|
|
sources = [
|
|
'llvm-project-%(version)s.src.tar.xz',
|
|
]
|
|
checksums = [
|
|
{'llvm-project-17.0.2.src.tar.xz': '351562b14d42fcefcbf00cc1f327680a1062bbbf67a1e1ca6acb64c473b06394'},
|
|
]
|
|
|
|
builddependencies = [
|
|
('CMake', '3.24.3'),
|
|
('Perl', '5.36.0'),
|
|
# Including Python bindings would require this as a runtime dep
|
|
('Python', '3.10.8'),
|
|
]
|
|
dependencies = [
|
|
# since Clang is a compiler, binutils is a runtime dependency too
|
|
('binutils', '2.39'),
|
|
('hwloc', '2.8.0'),
|
|
('libxml2', '2.10.3'),
|
|
('ncurses', '6.3'),
|
|
('GMP', '6.2.1'),
|
|
('Z3', '4.12.2'),
|
|
('CUDA', '12.2.0', '', True),
|
|
]
|
|
|
|
# enabling RTTI makes the flang compiler need to link to libc++ so instead of
|
|
# flang-new -flang-experimental-exec -fopenmp hello_openmp.f90
|
|
# you would need
|
|
# flang-new -flang-experimental-exec -fopenmp hello_openmp.f90 -l c++
|
|
enable_rtti = False
|
|
|
|
assertions = True
|
|
python_bindings = False
|
|
skip_all_tests = True
|
|
|
|
llvm_runtimes = ['libunwind', 'libcxx', 'libcxxabi']
|
|
llvm_projects = ['polly', 'lld', 'lldb', 'clang-tools-extra', 'flang']
|
|
|
|
moduleclass = 'compiler'
|