Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 915d95cb authored by adelmann's avatar adelmann :reminder_ribbon:
Browse files

in Debug build add -fsanitize and change to -gdwarf-4

parent 92eeff82
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,15 @@ if (${CMAKE_BUILD_TYPE} STREQUAL "Release")
add_definitions (-DNOPAssert)
endif ()
if (${CMAKE_BUILD_TYPE} STREQUAL "Debug")
add_compile_options (-fsanitize=undefined,address)
add_link_options (-fsanitize=undefined,address)
endif ()
add_compile_options (-Wall)
add_compile_options (-Wunused)
add_compile_options (-Wextra)
......@@ -45,7 +54,7 @@ endif()
add_definitions (-DNOCTAssert)
#add_compile_options (-ferror-limit=1)
#add_compile_options (-fsanitize=undefined,address)
#add_compile_options (-Wno-deprecated-declarations)
#add_compile_options (-Wno-unused)
#add_compile_options (-Wextra)
......@@ -61,7 +70,7 @@ add_compile_options (-funroll-loops)
add_compile_options (-fstrict-aliasing)
add_compile_options (-DKOKKOS_DEPENDENCE)
add_compile_options (-Wno-return-type)
add_compile_options (-gdwarf-2) # avoid dwarf errors on merlin
add_compile_options (-gdwarf-4) # avoid dwarf errors on merlin
# Resolve all library dependencies
set (CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/CMakeModules")
......
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