cmake : move sanitizer flags to llama_add_compile_flags
ggml-ci
This commit is contained in:
parent
ce293d837c
commit
9a03bc811f
5 changed files with 17 additions and 68 deletions
|
@ -4,23 +4,6 @@ find_package(Threads REQUIRED)
|
|||
|
||||
llama_add_compile_flags()
|
||||
|
||||
if (NOT MSVC)
|
||||
if (LLAMA_SANITIZE_THREAD)
|
||||
add_compile_options(-fsanitize=thread)
|
||||
link_libraries (-fsanitize=thread)
|
||||
endif()
|
||||
|
||||
if (LLAMA_SANITIZE_ADDRESS)
|
||||
add_compile_options(-fsanitize=address -fno-omit-frame-pointer)
|
||||
link_libraries (-fsanitize=address)
|
||||
endif()
|
||||
|
||||
if (LLAMA_SANITIZE_UNDEFINED)
|
||||
add_compile_options(-fsanitize=undefined)
|
||||
link_libraries (-fsanitize=undefined)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Build info header
|
||||
#
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue