summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSander Vrijders <sander.vrijders@intec.ugent.be>2016-10-23 10:43:08 +0000
committerSander Vrijders <sander.vrijders@intec.ugent.be>2016-10-23 10:43:08 +0000
commit38fcbdb67f9376fe7e5504f55fbfaab8e03c4c4b (patch)
treea8bb0865bd1515ae904f3d317f807661073974b4
parent84b11f3322797759fef746786badcd10936dfda4 (diff)
parent355d873559554ad4fc09869fc926ee3e7caea7b5 (diff)
downloadouroboros-38fcbdb67f9376fe7e5504f55fbfaab8e03c4c4b.tar.gz
ouroboros-38fcbdb67f9376fe7e5504f55fbfaab8e03c4c4b.zip
Merged in dstaesse/ouroboros/be-fix-build (pull request #273)
build: Explicitly add compiler flags
-rw-r--r--CMakeLists.txt19
1 files changed, 17 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ef321e4c..932375b4 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -41,8 +41,23 @@ include(FindPkgConfig)
include(CompilerUtils)
test_and_set_c_compiler_flag_global(-std=c89)
test_and_set_c_compiler_flag_global(-Wall)
-#Wextra may fail on clobbered warning due to pthread_cleanup
-#test_and_set_c_compiler_flag_global(-Wextra)
+# -Wextra may fail on clobbered warning due to pthread_cleanup
+# test_and_set_c_compiler_flag_global(-Wextra)
+# explicitly add other flags in -Wextra
+test_and_set_c_compiler_flag_global(-Wempty-body)
+test_and_set_c_compiler_flag_global(-Wignored-qualifiers)
+test_and_set_c_compiler_flag_global(-Wimplicit-fallthrough)
+test_and_set_c_compiler_flag_global(-Wmissing-field-initializers)
+test_and_set_c_compiler_flag_global(-Wmissing-parameter-type)
+test_and_set_c_compiler_flag_global(-Wold-style-declaration)
+test_and_set_c_compiler_flag_global(-Woverride-init)
+test_and_set_c_compiler_flag_global(-Wsign-compare)
+test_and_set_c_compiler_flag_global(-Wtype-limits)
+test_and_set_c_compiler_flag_global(-Wuninitialized)
+test_and_set_c_compiler_flag_global(-Wshift-negative-value)
+test_and_set_c_compiler_flag_global(-Wunused-parameter)
+test_and_set_c_compiler_flag_global(-Wunused-but-set-parameter)
+# -Wextra parameters
test_and_set_c_compiler_flag_global(-Werror)
test_and_set_c_compiler_flag_global(-Wundef)
test_and_set_c_compiler_flag_global(-Wpointer-arith)