-
Notifications
You must be signed in to change notification settings - Fork 714
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding easyconfigs: LLVM-17.0.6-GCCcore-13.2.0.eb
- Loading branch information
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
48 changes: 48 additions & 0 deletions
48
easybuild/easyconfigs/l/LLVM/LLVM-17.0.6-GCCcore-13.2.0.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name = 'LLVM' | ||
version = '17.0.6' | ||
|
||
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': '13.2.0'} | ||
toolchainopts = {'cstd': 'gnu++11', 'pic': True} | ||
|
||
source_urls = ['https://github.com/llvm/llvm-project/releases/download/llvmorg-%(version)s/'] | ||
sources = [ | ||
'llvm-%(version)s.src.tar.xz', | ||
'cmake-%(version)s.src.tar.xz', | ||
'third-party-%(version)s.src.tar.xz', | ||
] | ||
checksums = [ | ||
{'llvm-17.0.6.src.tar.xz': 'b638167da139126ca11917b6880207cc6e8f9d1cbb1a48d87d017f697ef78188'}, | ||
{'cmake-17.0.6.src.tar.xz': '807f069c54dc20cb47b21c1f6acafdd9c649f3ae015609040d6182cab01140f4'}, | ||
{'third-party-17.0.6.src.tar.xz': '3054d0a9c9375dab1a4539cc2cc45ab340341c5d71475f9599ba7752e222947b'}, | ||
] | ||
|
||
builddependencies = [ | ||
('binutils', '2.40'), | ||
('CMake', '3.27.6'), | ||
('Python', '3.11.5'), | ||
] | ||
|
||
dependencies = [ | ||
('ncurses', '6.4'), | ||
('zlib', '1.2.13'), | ||
] | ||
|
||
build_shared_libs = True | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/llvm-ar', 'bin/FileCheck'], | ||
'dirs': ['include/llvm', 'include/llvm-c'], | ||
} | ||
|
||
sanity_check_commands = ["llvm-ar --help"] | ||
|
||
moduleclass = 'compiler' |