summaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
author 987123879113 <63495610+987123879113@users.noreply.github.com>2025-01-14 00:44:16 +0900
committer GitHub <noreply@github.com>2025-01-14 02:44:16 +1100
commitaa5cd150b3e159d342b7bb0778f7517fe5c4ed1a (patch)
treebca15924bf754254052364067778850c49922701 /makefile
parent4dab319804dc2a81769937acafc486ffc750b61d (diff)
cpu/drcbearm64.cpp: Added a 64-bit ARMv8 (AArch64) DRC back-end. (#13162)
* cpu/uml.cpp: Removed unused vector type. * 3rdparty/asmjit: Update asmjit to latest upstream. * cpu/drcbex64.cpp: Fixed crash with LOG_HASHJMPS enabled (stack needs to be 16-byte aligned before calling debug_log_hashjmp_fail).
Diffstat (limited to 'makefile')
-rw-r--r--makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/makefile b/makefile
index c3ffd8c0721..176f9855a35 100644
--- a/makefile
+++ b/makefile
@@ -390,16 +390,15 @@ endif
ifeq ($(findstring arm,$(UNAME)),arm)
ARCHITECTURE :=
-ifndef FORCE_DRC_C_BACKEND
- FORCE_DRC_C_BACKEND := 1
+ifneq ($(PLATFORM),arm64)
+ ifndef FORCE_DRC_C_BACKEND
+ FORCE_DRC_C_BACKEND := 1
+ endif
endif
endif
ifeq ($(findstring aarch64,$(UNAME)),aarch64)
ARCHITECTURE :=
-ifndef FORCE_DRC_C_BACKEND
- FORCE_DRC_C_BACKEND := 1
-endif
endif
ifeq ($(findstring s390x,$(UNAME)),s390x)