-
-
Notifications
You must be signed in to change notification settings - Fork 619
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
gcc is not a valid toolset in "premake5 gmake" in dev #266
Comments
Is it not that GCC is the default in lieu of explicit statement? |
No. Some platforms (NetBSD being one) use 'clang' as their default C On Thu, Sep 10, 2015 at 6:27 AM, Manu Evans [email protected]
|
kind of goes with #248 which is essentially an incorrect fix too.... if we didn't assume any default, and simple don't set CC, my fix might not actually be needed either.. |
Open to suggestions on this. We'll have to store a default toolset somewhere? Or perhaps better to have a function that could be overridden? |
well, why don't we have an actual "toolset 'default'", that way the gmake backend can just not output the CC and LINK directives which basically will cause make to use whatever C compiler is active on the system. |
What about a |
has this been fixed? |
as a workaround, I found this method: makesettings [[ |
How do we specify
It appears to think that |
So what I found as my problem just now is that the tool is specifying Post
|
A simple check of:
solution "xyzzy"
toolset "clang"
yields "CC=clang" in the generated makefiles, however:
solution "xyzzy"
toolset "gcc"
does not set CC= in the generated makefiles
This is on OSX, if it makes any difference.
The text was updated successfully, but these errors were encountered: