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