-
Notifications
You must be signed in to change notification settings - Fork 18
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
Using different compilers does not always go to dependencies #14
Comments
This might help for the CMake projects (but not for configure etc) http://stackoverflow.com/questions/32744788/forwarding-current-compiler-to-externalproject?rq=1 |
Use mark_as_superbuild to pass generator, platform info etc. This will partial solve Issue #14 (but only for dependencies that build via CMake).
This should no longer be a problem for CMake projects by using |
The suggested solution of setting
This would conceivably be possibly to do via CMake here, but it isn't trivial to get the complete and correct paths. The we might still have to run Boost |
Specifying compilers is actually not enough. We need to use the same C++ versions as well. See #161 |
In bash, you can normally say
to use a non-default compiler. However, these settings of CC do not get passed on to (some?) dependencies with the superbuild. It currently only works if you do
The text was updated successfully, but these errors were encountered: