Skip to content
Snippets Groups Projects
Verified Commit 39113c12 authored by Lars Bilke's avatar Lars Bilke
Browse files

[cmake] Enable address and undef. beh. sanitizer for tfel.

parent 40c720c4
No related branches found
No related tags found
No related merge requests found
...@@ -80,6 +80,22 @@ if(OGS_USE_MFRONT) ...@@ -80,6 +80,22 @@ if(OGS_USE_MFRONT)
"TFEL Python bindings disabled as Boosts Python library was not found." "TFEL Python bindings disabled as Boosts Python library was not found."
) )
endif() endif()
if(ENABLE_ASAN)
list(APPEND _sanitize_flags -fsanitize=address)
endif()
if(ENABLE_UBSAN)
list(APPEND _sanitize_flags -fsanitize=undefined)
endif()
if(DEFINED _sanitize_flags)
list(JOIN _sanitize_flags " " _sanitize_flags_string)
foreach(var CXX EXE_LINKER SHARED_LINKER MODULE_LINKER)
list(APPEND _tfel_cmake_args
"-DCMAKE_${var}_FLAGS_INIT=${_sanitize_flags_string}"
)
endforeach()
endif()
BuildExternalProject( BuildExternalProject(
TFEL ${_tfel_source} TFEL ${_tfel_source}
CMAKE_ARGS "-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}" CMAKE_ARGS "-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment