-
Notifications
You must be signed in to change notification settings - Fork 790
{compiler}[intel/2017b] LLVM v5.0.0 #5321
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
wpoely86
merged 4 commits into
easybuilders:develop
from
boegel:20171109225441_new_pr_LLVM500
Nov 17, 2017
Merged
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
d2e33c6
adding easyconfigs: LLVM-5.0.0-intel-2017b.eb
boegel a492265
consistently use --DCMAKE_BUILD_TYPE=Release in recent LLVM easyconfigs
boegel 1b43ffc
consistently add -DLLVM_ENABLE_RTTI=1 to LLVM configure options (requ…
boegel 09f66f4
' -> "
boegel 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
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
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
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
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
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
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
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,44 @@ | ||
| easyblock = 'CMakeMake' | ||
|
|
||
| name = 'LLVM' | ||
| version = '5.0.0' | ||
|
|
||
| homepage = "http://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': 'intel', 'version': '2017b'} | ||
| toolchainopts = {'cstd': 'gnu++11'} | ||
|
|
||
| source_urls = ["http://llvm.org/releases/%(version)s"] | ||
| sources = ["llvm-%(version)s.src.tar.xz"] | ||
| checksums = ['e35dcbae6084adcf4abb32514127c5eabd7d63b733852ccdb31e06f1373136da'] | ||
|
|
||
| builddependencies = [ | ||
| ('CMake', '3.9.5'), | ||
| ('Python', '2.7.14'), | ||
| ] | ||
|
|
||
| dependencies = [ | ||
| ('ncurses', '6.0'), | ||
| ('zlib', '1.2.11'), | ||
| ] | ||
|
|
||
| configopts = '-DBUILD_SHARED_LIBS=ON -DCMAKE_EXE_LINKER_FLAGS="$LDFLAGS -shared-intel" ' | ||
| # required to install extra tools in bin/ | ||
| configopts += "-DLLVM_INSTALL_UTILS=ON -DLLVM_TARGETS_TO_BUILD=X86 -DLLVM_ENABLE_ZLIB=ON -DLLVM_ENABLE_RTTI=1 " | ||
| configopts += '-DCMAKE_BUILD_TYPE=Release ' | ||
|
|
||
| sanity_check_paths = { | ||
| 'files': ['bin/llvm-ar', 'bin/FileCheck'], | ||
| 'dirs': ['include/llvm', 'include/llvm-c'], | ||
| } | ||
|
|
||
| separate_build_dir = True | ||
|
|
||
| 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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if you change the quotes on this line, also do it on the others
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did where I could, but in some places there's a technical reason to use outer single quotes (which I prefer not to use when I can, for values that include spaces).