-
Notifications
You must be signed in to change notification settings - Fork 60
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
cmake flag USE_HARDENING is effectively ignored #1380
Comments
One might want to let |
I should add that I want the |
Well, it wasn't written as a logic error. The diff adding it:
It's like, by default we use a medium amount of hardening but if you set USE_HARDENING we use maximum hardening. But on MinGW medium hardening doesn't work and has to be disabled. |
The logic is still wrong. The correct logic would be to remove |
There are other flags enabled only with USE_HARDENING. |
Sure, not saying remove the flag |
I believe
should rather begin with
if (USE_HARDENING AND NOT MINGW)
in DaemonFlags.cmake.The text was updated successfully, but these errors were encountered: