mirror of
https://github.com/FEX-Emu/FEX.git
synced 2024-11-23 14:40:14 +00:00
Add cmake message about which JIT we are using
This commit is contained in:
parent
0e35fddac6
commit
e59a6fcd5d
@ -27,13 +27,16 @@ if (CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64")
|
||||
set(CMAKE_REQUIRED_DEFINITIONS "-fno-operator-names")
|
||||
check_include_file_cxx(xbyak/xbyak.h XBYAK_FOUND)
|
||||
if (XBYAK_FOUND)
|
||||
message(STATUS "Enabling x86-64 JIT")
|
||||
set(ENABLE_JIT 1)
|
||||
else()
|
||||
message(STATUS "xbyak not found. Not enabling runtime JIT")
|
||||
endif()
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if (FORCE_AARCH64 OR CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64")
|
||||
message(STATUS "Enabling AArch64 JIT")
|
||||
set(_M_ARM_64 1)
|
||||
set(ENABLE_JIT 1)
|
||||
add_subdirectory(External/vixl/)
|
||||
|
Loading…
Reference in New Issue
Block a user