cmake: Increase stack depth for newer versions of clang
* See https://github.com/citra-emu/citra/issues/6088
This commit is contained in:
parent
153e10cad3
commit
811b07b78c
@ -11,6 +11,10 @@ endif()
|
||||
# Add the module directory to the list of paths
|
||||
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/CMakeModules")
|
||||
|
||||
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang" AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 12)
|
||||
string(APPEND CMAKE_CXX_FLAGS " -fbracket-depth=1024")
|
||||
endif()
|
||||
|
||||
# Arch detection
|
||||
include(DetectArchitecture)
|
||||
if (MSVC)
|
||||
|
Loading…
x
Reference in New Issue
Block a user