-
Notifications
You must be signed in to change notification settings - Fork 789
Added Clang-3.3 #424
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
Merged
Added Clang-3.3 #424
Changes from 4 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
f8c124e
bump version to v1.6.1.0dev
boegel d979226
Update ncursus for GCC-4.8.1
wpoely86 3920f1b
Update CMake to 2.8.11 with GCC-4.8.1
wpoely86 18a1888
Added easyconfig for Clang 3.3
wpoely86 e1a2874
Merge branch 'master' of github.com:hpcugent/easybuild-easyconfigs
boegel 7d1eed7
Small cleanup + added authorship
wpoely86 865a7d4
Merge branch 'clang33' of github.com:wpoely86/easybuild-easyconfigs i…
boegel 0c9bcc8
use %(version)s
boegel e68db54
Merge pull request #2 from boegel/clang33
wpoely86 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| name = 'CMake' | ||
| version = '2.8.11' | ||
|
|
||
| homepage = 'http://www.cmake.org' | ||
| description = """CMake, the cross-platform, open-source build system. | ||
| CMake is a family of tools designed to build, test and package software.""" | ||
|
|
||
| toolchain = {'name': 'GCC', 'version': '4.8.1'} | ||
|
|
||
| source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s'] | ||
| sources = [SOURCELOWER_TAR_GZ] | ||
|
|
||
| dependencies = [('ncurses', '5.9')] | ||
|
|
||
| sanity_check_paths = { | ||
| 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']], | ||
| 'dirs': [], | ||
| } | ||
|
|
||
| moduleclass = 'devel' |
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,55 @@ | ||
| ## | ||
| # This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild | ||
| # | ||
| # Copyright:: Copyright 2013 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 = "3.3" | ||
|
|
||
| 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': 'GCC', 'version': '4.8.1'} | ||
|
|
||
| sources = [ | ||
| "llvm-%s.src.tar.gz" % version, | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. better to use |
||
| "cfe-%s.src.tar.gz" % version, | ||
| "compiler-rt-%s.src.tar.gz" % version, | ||
| ] | ||
|
|
||
| source_urls = [ | ||
| "http://llvm.org/releases/%s" % version | ||
| ] | ||
|
|
||
| patches = [ | ||
| # Remove some tests that fail because of -DGCC_INSTALL_PREFIX. The issue is | ||
| # that hardcoded GCC_INSTALL_PREFIX overrides -sysroot. This probably breaks | ||
| # cross-compilation. | ||
| # http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20130401/077539.html | ||
| 'Clang-3.3-failing-tests-due-to-gcc-installation-prefix.patch', | ||
| # Several asan and tsan tests fail due to 32<->64 bit issues. This patch disables them. | ||
| 'Clang-3.3-failing-asan-and-tsan-tests.patch', | ||
| ] | ||
|
|
||
| builddependencies = [('CMake', '2.8.11')] | ||
|
|
||
| sanity_check_paths = { | ||
| 'files': ['bin/clang', 'bin/clang++', 'lib/libclang.so', 'lib/clang/%s/include/stddef.h' % version], | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| 'dirs': [] | ||
| } | ||
|
|
||
| languages = ['c', 'c++'] | ||
|
|
||
| moduleclass = 'compiler' | ||
|
|
||
| assertions = False | ||
|
|
||
| build_targets = ['X86'] | ||
Oops, something went wrong.
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 have no objections with the licensing scheme, I'd say add yourself in the list of authors;
having a couple of authors per (complex) easyconfig is good for "parenting" them...
Otherwise, nice work! that will also help #350 now...