this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

dropped -Waggregate-return from warning flags as it created spurious warnings for recent c++ compilation (found through cmake build on CentOS 8)

+3 -3
+1 -1
CMakeLists.txt
··· 21 21 22 22 if(CMAKE_C_COMPILER_ID MATCHES "GNU|Clang|AppleClang") 23 23 add_compile_options(-ffast-math -fomit-frame-pointer 24 - -W -Wall -Waggregate-return -Wcast-align -Wcast-qual -Wshadow -Wwrite-strings 24 + -W -Wall -Wcast-align -Wcast-qual -Wshadow -Wwrite-strings 25 25 "$<$<COMPILE_LANGUAGE:C>:-Wstrict-prototypes;-Wmissing-prototypes;-Wnested-externs;-Wbad-function-cast>") 26 26 endif() 27 27
+1 -1
test/Makefile
··· 1 1 2 - WARNINGS=-W -Wall -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return \ 2 + WARNINGS=-W -Wall -Wstrict-prototypes -Wmissing-prototypes \ 3 3 -Wcast-align -Wcast-qual -Wnested-externs -Wshadow -Wbad-function-cast \ 4 4 -Wwrite-strings 5 5
+1 -1
tools/Makefile
··· 1 - WARNINGS=-W -Wall -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return \ 1 + WARNINGS=-W -Wall -Wstrict-prototypes -Wmissing-prototypes \ 2 2 -Wcast-align -Wcast-qual -Wnested-externs -Wshadow -Wbad-function-cast \ 3 3 -Wwrite-strings 4 4