-
Notifications
You must be signed in to change notification settings - Fork 203
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
16 gcc mac #4
16 gcc mac #4
Conversation
config.guess is a script which is also run by gcc during configuring. On a mac uname does not provide the correct build target
Your message to the list 'easybuild-admin' has been forwarded to the moderator(s) |
# instead of relying on uname, we run the same command GCC uses to | ||
# determine the platform | ||
out, ec = run_cmd("../config.guess", simple=False) | ||
if not ec: |
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.
use "if ec == 0:", to make it more explicit that this corresponds to a successful run of config.guess
OK to merge for me. |
nudded, please rebase this on top of current master and fix conflicts (probably just the copyright header) and I'll merge. |
Conflicts: easybuild/easyblocks/g/gcc.py
better gcc support for mac
support producing XML output from unit tests
…ma_specially 602 handle lists indicated with comma specially
clean up support for --filter-deps + add unit tests
make sure Lmod is used as modules tool when generating module files in Lua syntax
make unit test suite pass, rename JobServer to JobBackend, fix default for --job-bakcend
sync with develop & resolve conflict
use None as default value for whatis + minor style fixes
rename parse_raw_path_* methods to interpret_raw_path_*, add dedicated tests for them + fix some bugs
cleanup & tests for find_backup_name_candidate & move_file
disable testing of bootstrap script when Modules v4 is used as modules tool
use DEFAULT_OPT_LEVEL constant + fix minor style issues
style fixes to make Hound CI happy
ensure ordered output in message printed by --list-prs, drop unused GITHUB_MAX_PER_PAGE from _postprocess_list_prs
add configuration option to allow disabling progress bar
tweak GPU part of output produced by --show-system-info
move `CWD_NOTFOUND_ERROR` constant to `tools.build_log`
fix handling of specified command environment in `create_cmd_scripts` + add test for env option in `run_shell_cmd`
This should fix the problem where the sanity check of GCC would fail on OS X. (tested on HPC and Mac OS X 10.7.4).
related to Trac #16