-
Notifications
You must be signed in to change notification settings - Fork 400
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
Linux port WIP #811
Linux port WIP #811
Conversation
@@ -87,16 +87,19 @@ function defaultConfigurations() | |||
configuration "Debug" | |||
targetdir(BINARY_DIR .. "Debug") | |||
defines { "DEBUG" } | |||
buildoptions { "-std=c++11" } |
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'm not very sure about these options on MSVS in particular and about build configuration for Linux in general.
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.
It seems to be ignored on MSVS
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 tried to compile it with MSVS, and even though -std=c++11
is ignored, it causes warnings
2>cl : Command line warning D9002: ignoring unknown option '-std=c++11'
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.
OK, I'm removing it for now.
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.
Done.
I guess it is better to do it iteratively, github has problems with large PR anyway. There is just one issue before this can be merged, see my comment about |
Good job |
I decided to do it iteratively instead of having one huge PR. Please, take a look.