mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-22 21:15:40 +01:00
Set _FORTIFY_SOURCE=0 if building Opus with mingw-w64
This commit is contained in:
parent
e84f82a028
commit
52e66779e7
4
externals/opus/CMakeLists.txt
vendored
4
externals/opus/CMakeLists.txt
vendored
@ -203,8 +203,12 @@ endif()
|
||||
target_compile_definitions(opus PRIVATE OPUS_BUILD ENABLE_HARDENING)
|
||||
|
||||
if(NOT MSVC)
|
||||
if(MINGW)
|
||||
target_compile_definitions(opus PRIVATE _FORTIFY_SOURCE=0)
|
||||
else()
|
||||
target_compile_definitions(opus PRIVATE _FORTIFY_SOURCE=2)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# It is strongly recommended to uncomment one of these VAR_ARRAYS: Use C99
|
||||
# variable-length arrays for stack allocation USE_ALLOCA: Use alloca() for stack
|
||||
|
Loading…
Reference in New Issue
Block a user