build/cmake: properly disable assert() globally for release builds

Assertion failed: (ObjectBufferMap.find(Key) == ObjectBufferMap.end() && "Second attempt to perform debug registration."), function NotifyObjectEmitted, file llvm/lib/ExecutionEngine/GDBRegistrationListener.cpp, line 168.
This commit is contained in:
Jan Beich 2018-09-21 21:54:16 +00:00 committed by Ivan
parent efb3b08f87
commit 0da556e1f8
2 changed files with 4 additions and 4 deletions

View file

@ -30,6 +30,10 @@ if (NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Release")
endif()
if(NOT CMAKE_BUILD_TYPE STREQUAL "Debug")
add_definitions(-DNDEBUG)
endif()
if(NOT CMAKE_SIZEOF_VOID_P EQUAL 8)
message( FATAL_ERROR "RPCS3 can only be compiled on 64-bit platforms." )
endif()

View file

@ -10,10 +10,6 @@ add_custom_target(GitVersion ALL
# Check for a sufficient compiler and set build options
include(ConfigureCompiler)
if(NOT CMAKE_BUILD_TYPE STREQUAL "Debug")
add_definitions(-DNDEBUG)
endif()
set(ADDITIONAL_LIBS "")
if(CMAKE_SYSTEM MATCHES "Linux")
#on some Linux distros shm_unlink and similar functions are in librt only