diff options
author | 2020-06-27 14:50:48 +0200 | |
---|---|---|
committer | 2020-06-27 15:42:47 +0200 | |
commit | a8bd59055eda6b6656e56e689a8a74f7e835434d (patch) | |
tree | cdcf482533b4e4de9966287f4d813e6bd933b160 /scripts/src/3rdparty.lua | |
parent | 27ee93116d3a96ed1a74b6a3be5368116983dbde (diff) |
Only build asmjit on x86 and x86_64
Diffstat (limited to 'scripts/src/3rdparty.lua')
-rw-r--r-- | scripts/src/3rdparty.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/src/3rdparty.lua b/scripts/src/3rdparty.lua index 52e5d862168..7002fdbe0ff 100644 --- a/scripts/src/3rdparty.lua +++ b/scripts/src/3rdparty.lua @@ -2224,6 +2224,7 @@ project "wdlfft" -- asmjit library -------------------------------------------------- +if not _OPTIONS["FORCE_DRC_C_BACKEND"] then project "asmjit" uuid "4539757c-6e99-4bae-b3d0-b342a7c49539" kind "StaticLib" @@ -2353,3 +2354,4 @@ project "asmjit" MAME_DIR .. "3rdparty/asmjit/src/asmjit/x86/x86rapass.cpp", MAME_DIR .. "3rdparty/asmjit/src/asmjit/x86/x86rapass_p.h", } +end |