aboutsummaryrefslogtreecommitdiff
path: root/scripts/select-compile
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-03-14 21:08:01 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2025-03-14 21:08:01 +0200
commitf5c729ea59d227a507f83bd94d07f4366b46d72b (patch)
tree70d1f242100cea09acd38a71ff8c821836117cfd /scripts/select-compile
parent57f6b41047e95374701ee276248f0f8615168450 (diff)
downloadejit-f5c729ea59d227a507f83bd94d07f4366b46d72b.tar.gz
ejit-f5c729ea59d227a507f83bd94d07f4366b46d72b.zip
start supporting 32bit arches
Diffstat (limited to 'scripts/select-compile')
-rwxr-xr-xscripts/select-compile3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/select-compile b/scripts/select-compile
index 8d87409..fca7350 100755
--- a/scripts/select-compile
+++ b/scripts/select-compile
@@ -9,6 +9,7 @@ JIT="src/compile/compile.c"
NOJIT="src/compile/nocompile.c"
case "$ARCH" in
- x86_64) echo "$JIT" ;;
+ amd64) echo "$JIT" ;;
+ x86*) echo "$JIT" ;;
*) echo "$NOJIT" ;;
esac