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 ad01456b authored by kraus's avatar kraus
Browse files

don't use GLIBCXX_ASSERTIONS in production

parent 5d40669a
No related branches found
No related tags found
1 merge request!468Don't use GLIBCXX_ASSERTIONS in production
...@@ -101,7 +101,10 @@ elseif (${CMAKE_CXX_COMPILER_ID} MATCHES "GNU") ...@@ -101,7 +101,10 @@ elseif (${CMAKE_CXX_COMPILER_ID} MATCHES "GNU")
# Enables extra error checking in the form of precondition assertion, such # Enables extra error checking in the form of precondition assertion, such
# as bounds checking and null pointer checks when dereferencing smart pointers # as bounds checking and null pointer checks when dereferencing smart pointers
add_compile_options(-Wp,-D_GLIBCXX_ASSERTIONS) string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
if (uppercase_CMAKE_BUILD_TYPE MATCHES "^(DEBUG|RELWITHDEBINFO)$")
add_compile_options(-Wp,-D_GLIBCXX_ASSERTIONS)
endif()
else () else ()
message (STATUS "Unknown C++ compiler. Please use the GNU or Intel compiler, if you are having problems.") message (STATUS "Unknown C++ compiler. Please use the GNU or Intel compiler, if you are having problems.")
endif () endif ()
......
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