-
Notifications
You must be signed in to change notification settings - Fork 782
{compiler}[GCCcore/11.3.0] Clang v15.0.5 w/ Python 3.10.4 #16701
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
SebastianAchilles
merged 6 commits into
easybuilders:develop
from
ocaisa:20221122105031_new_pr_Clang1505
Mar 31, 2023
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
8485624
adding easyconfigs: Clang-15.0.5-GCCcore-11.3.0.eb
ef035ef
Update Clang-15.0.5-GCCcore-11.3.0.eb
ocaisa 1593e41
Disable RTTI when using flang project
ocaisa 1d1afb4
Don't build the python bindings
ocaisa 44d1800
Python is still required as a build dep
ocaisa 93359a6
Merge branch 'develop' of https://github.com/easybuilders/easybuild-e…
SebastianAchilles File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
58 changes: 58 additions & 0 deletions
58
easybuild/easyconfigs/c/Clang/Clang-15.0.5-GCCcore-11.3.0.eb
This file contains hidden or 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,58 @@ | ||
| ## | ||
| # This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild | ||
| # | ||
| # Copyright:: Copyright 2013-2015 Dmitri Gribenko, Ward Poelmans | ||
| # Authors:: Dmitri Gribenko <gribozavr@gmail.com> | ||
| # Authors:: Ward Poelmans <wpoely86@gmail.com> | ||
| # License:: GPLv2 or later, MIT, three-clause BSD. | ||
| # $Id$ | ||
| ## | ||
|
|
||
| name = 'Clang' | ||
| version = '15.0.5' | ||
|
|
||
| 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': '11.3.0'} | ||
|
|
||
| source_urls = ["https://github.com/llvm/llvm-project/releases/download/llvmorg-%(version)s"] | ||
| sources = [ | ||
| 'llvm-project-%(version)s.src.tar.xz', | ||
| ] | ||
| checksums = ['9c4278a6b8884eb7f4ae7dfe3c8e5445019824885e47cfdf1392563c47316fd6'] | ||
|
|
||
| builddependencies = [ | ||
| ('CMake', '3.23.1'), | ||
| ('Perl', '5.34.1'), | ||
| ('elfutils', '0.187'), | ||
| # Including Python bindings would require this as a runtime dep | ||
| ('Python', '3.10.4'), | ||
| ] | ||
| dependencies = [ | ||
| # since Clang is a compiler, binutils is a runtime dependency too | ||
| ('binutils', '2.38'), | ||
| ('hwloc', '2.7.1'), | ||
| ('libxml2', '2.9.13'), | ||
| ('ncurses', '6.3'), | ||
| ('GMP', '6.2.1'), | ||
| ('Z3', '4.10.2'), | ||
| ] | ||
|
|
||
| # 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' | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.