aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-04-26 22:10:08 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2025-04-26 22:10:08 +0300
commitce2f4acb9a66a5b9f473185af6c8d645e776f1fa (patch)
tree91627238a4d91c3f5bd9c7251625dc6e410d82a3
parent843954c488c837c29868f09e34ecc6c8ce61ed28 (diff)
downloadejit-ce2f4acb9a66a5b9f473185af6c8d645e776f1fa.tar.gz
ejit-ce2f4acb9a66a5b9f473185af6c8d645e776f1fa.zip
add sh4 to checked architecturesHEADmaster
+ Not sure how I missed it but looks to be working
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 70ae007..a649a72 100644
--- a/Makefile
+++ b/Makefile
@@ -113,6 +113,12 @@ check_linux_m68k:
QEMU_LD_PREFIX=/usr/m68k-linux-gnu \
$(MAKE) ARCH=m68k CROSS_COMPILE=m68k-linux-gnu- check
+.PHONY: check_linux_sh4
+check_linux_sh4:
+ $(MAKE) clean
+ QEMU_LD_PREFIX=/usr/sh4-linux-gnu \
+ $(MAKE) ARCH=sh4 CROSS_COMPILE=sh4-linux-gnu- check
+
.PHONY: check_linux
check_linux:
$(MAKE) check_linux_amd64
@@ -130,10 +136,10 @@ check_linux:
$(MAKE) check_linux_alpha
$(MAKE) check_linux_hppa
$(MAKE) check_linux_m68k
+ $(MAKE) check_linux_sh4
# compiler+emulator not available or broken
#$(MAKE) check_linux_hppa64
#$(MAKE) check_linux_arc
- #$(MAKE) check_linux_sh4
.DEFAULT: setup
$(MAKE) -f scripts/makefile $<