Skip to content

Commit 18c65f4

Browse files
committed
Note for future experiment.
1 parent 368bc42 commit 18c65f4

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

CMakeLists.txt

+6
Original file line numberDiff line numberDiff line change
@@ -205,10 +205,16 @@ if (C_CLANG OR C_GCC)
205205
# I also took out -Wextra because it spews out so much noise a serious problem was not noticed.
206206
# It might go back in someday when I have more patience to clean up all the warnings.
207207
#
208+
209+
# TODO:
210+
# Try error checking -fsanitize=bounds-strict -fsanitize=leak
211+
# Requires libubsan and liblsan, respectively.
212+
208213
###set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wvla -ffast-math -ftree-vectorize -D_XOPEN_SOURCE=600 -D_DEFAULT_SOURCE ${EXTRA_FLAGS}")
209214
if(FREEBSD)
210215
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wvla -ffast-math -ftree-vectorize -D_DEFAULT_SOURCE ${EXTRA_FLAGS}")
211216
else()
217+
#set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wvla -ffast-math -ftree-vectorize -D_GNU_SOURCE -fsanitize=bounds-strict ${EXTRA_FLAGS}")
212218
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wvla -ffast-math -ftree-vectorize -D_GNU_SOURCE ${EXTRA_FLAGS}")
213219
endif()
214220
#

0 commit comments

Comments
 (0)