mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-10 09:48:58 +02:00
fix aarch64
This commit is contained in:
parent
39c0337ad5
commit
653c7494cd
1 changed files with 4 additions and 1 deletions
|
|
@ -95,7 +95,6 @@ else()
|
|||
-pedantic
|
||||
-Wno-missing-braces
|
||||
-fno-rtti
|
||||
-fno-exceptions
|
||||
)
|
||||
if (CXX_GCC)
|
||||
# GCC produces bogus -Warray-bounds warnings from xbyak headers for code paths that are not
|
||||
|
|
@ -113,6 +112,10 @@ else()
|
|||
# Clang mistakenly blames CMake for using unused arguments during compilation
|
||||
list(APPEND DYNARMIC_CXX_FLAGS -Wno-unused-command-line-argument)
|
||||
endif()
|
||||
# TODO: oaknut exceptions
|
||||
if ("x86_64" IN_LIST ARCHITECTURE)
|
||||
list(APPEND DYNARMIC_CXX_FLAGS -fno-exceptions)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if (NOT Boost_FOUND)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue