File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -205,10 +205,16 @@ if (C_CLANG OR C_GCC)
205
205
# I also took out -Wextra because it spews out so much noise a serious problem was not noticed.
206
206
# It might go back in someday when I have more patience to clean up all the warnings.
207
207
#
208
+
209
+ # TODO:
210
+ # Try error checking -fsanitize=bounds-strict -fsanitize=leak
211
+ # Requires libubsan and liblsan, respectively.
212
+
208
213
###set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wvla -ffast-math -ftree-vectorize -D_XOPEN_SOURCE=600 -D_DEFAULT_SOURCE ${EXTRA_FLAGS}")
209
214
if (FREEBSD)
210
215
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wvla -ffast-math -ftree-vectorize -D_DEFAULT_SOURCE ${EXTRA_FLAGS} " )
211
216
else ()
217
+ #set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wvla -ffast-math -ftree-vectorize -D_GNU_SOURCE -fsanitize=bounds-strict ${EXTRA_FLAGS}")
212
218
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wvla -ffast-math -ftree-vectorize -D_GNU_SOURCE ${EXTRA_FLAGS} " )
213
219
endif ()
214
220
#
You can’t perform that action at this time.
0 commit comments