mirror of
https://gitlab.com/dosowisko.net/libsuperderpy.git
synced 2024-12-05 00:38:00 +01:00
cmake: Disable sanitizers on PS Vita
This commit is contained in:
parent
1ec6ce7550
commit
f9176ce1f5
1 changed files with 5 additions and 1 deletions
|
@ -123,7 +123,11 @@ if (NOT LIBSUPERDERPY_CONFIG_INCLUDED)
|
|||
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -g3 -s ASSERTIONS=1")
|
||||
else()
|
||||
if(MAEMO5 AND SANITIZERS_ARGS)
|
||||
message(STATUS "Sanitizers unavailable under Maemo, disabling...")
|
||||
message(STATUS "Sanitizers unavailable on Maemo, disabling...")
|
||||
set(SANITIZERS_ARGS "")
|
||||
endif()
|
||||
if(VITA AND SANITIZERS_ARGS)
|
||||
message(STATUS "Sanitizers unavailable on Vita, disabling...")
|
||||
set(SANITIZERS_ARGS "")
|
||||
endif()
|
||||
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -ggdb3")
|
||||
|
|
Loading…
Reference in a new issue