-
Notifications
You must be signed in to change notification settings - Fork 11.3k
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
Enable -std= for cmake builds, fix warnings #598
Conversation
Hmm that doesn't trigger the CI - should I have made a branch on this repo instead of my own? |
github actions are having issues: https://www.githubstatus.com/ |
Yeah github has been a mess yesterday and today. Getting unicorns all over the place. |
Isn’t this a thing: set(CMAKE_CXX_STANDARD 11) or is current cmake version too low for that |
You're right, and Updated it, and now it looks like CI is working again. |
Looks like the recent changes broke this PR and needs to rebased. |
this is kinda bad, we already have it defined per target (and since they are public, they get inherited) |
The point is that |
That just seems wrong 🤔 can you point me to the logs? I can't find said warnings. |
The warnings were about writing to the buffer returned by the You never saw these warnings in the CI logs or when running |
This looks wrong following cmake convention ngl. Should we remove it since cmake has the ability to differentiate c++ and c by itself? |
I think it comes down to this: https://cmake.org/cmake/help/latest/command/target_compile_features.html
Use of standard C++11 does not require You could argue that |
Fixed Cuda Dockerfile
The
Makefile
has-std=c11
/-std=c++11
, but those were missing inCMakeLists.txt
. Add them and fix the warnings.