aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAntonio Terceiro <[email protected]>2025-02-23 09:48:21 -0300
committerQuentin Carbonneaux <[email protected]>2025-03-15 14:40:55 +0100
commit789e38fdb238cfb0b09589e3cf361ca6df55d996 (patch)
tree38a03ececda257a8ce07366e61147327004b24fd /Makefile
parent86d13b93e85ad9c11ae453529ab7b33896f39dd0 (diff)
Makefile: add explicit target to test the x86_64 backend
When developing on an arm64 machine, it's useful to be able to test the x86_64 target.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index ca27b35..7acaf35 100644
--- a/Makefile
+++ b/Makefile
@@ -71,6 +71,9 @@ clean-gen: clean
check: qbe
tools/test.sh all
+check-x86_64: qbe
+ TARGET=x86_64 tools/test.sh all
+
check-arm64: qbe
TARGET=arm64 tools/test.sh all