chore: remove obsolete MinGW-specific flag

This commit is contained in:
Sebastian Ullrich 2020-05-31 10:33:03 +02:00
parent 8ae25090cf
commit 6019c30a37

View file

@ -215,12 +215,6 @@ else()
message(WARNING "Disabling JSON support, compile server will not be available")
endif()
if(MINGW AND CMAKE_COMPILER_IS_GNUCXX)
# See https://github.com/leanprover/lean/issues/930#issuecomment-172555475
message(STATUS "Set _GLIBCXX_USE_CXX11_ABI = 0 for a system using MSYS2 + g++")
set(LEAN_EXTRA_CXX_FLAGS "${LEAN_EXTRA_CXX_FLAGS} -D_GLIBCXX_USE_CXX11_ABI=0")
endif()
if(NOT MULTI_THREAD)
message(STATUS "Disabled multi-thread support, it will not be safe to run multiple threads in parallel")
set(AUTO_THREAD_FINALIZATION OFF)