-
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
Minor build system cleanup #1304
base: master
Are you sure you want to change the base?
Conversation
There is a BUILD_ALWAYS option now which can be used instead of a custom step that runs before the build to force it.
@@ -305,7 +305,7 @@ else() | |||
|
|||
# The -pthread flag sets some preprocessor defines, | |||
# it is also used to link with libpthread on Linux. | |||
if (NOT APPLE) | |||
if (LINUX OR FREEBSD) | |||
try_c_cxx_flag(PTHREAD "-pthread") |
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.
@@ -315,7 +315,7 @@ else() | |||
endif() | |||
|
|||
# Hardening. | |||
if (USE_HARDENING OR NOT MINGW) | |||
if (USE_HARDENING OR (NOT MINGW AND NOT NACL)) |
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.
If that should not be used with NaCl, the USE_HARDENING
name can be removed from set(DEFAULT_NACL_VM_INHERITED_OPTIONS …)
in CMakeLists.txt
(better do both).
No description provided.