Skip to content

Commit

Permalink
fix: remove incorrect compile flags
Browse files Browse the repository at this point in the history
to reproduce spurious abort insert:

src/silo/preprocessing/preprocessor.cpp:61
Database Preprocessor::preprocess() {
   tbb::parallel_for(tbb::blocked_range(0, 1), [](const auto i){
      throw std::runtime_error("");
   });
   ...
}
  • Loading branch information
Taepper committed Jun 6, 2024
1 parent c7028cc commit 66f3cb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ message(STATUS "Build type: ${CMAKE_BUILD_TYPE}")

set(CMAKE_CXX_FLAGS "-Wall")
set(CMAKE_CXX_FLAGS_DEBUG "-g -fsanitize=address")
set(CMAKE_CXX_FLAGS_RELEASE "-O3 -static-libstdc++ -static-libgcc")
set(CMAKE_CXX_FLAGS_RELEASE "-O3")

# Work-around only for MacOS
if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
Expand Down

0 comments on commit 66f3cb0

Please sign in to comment.