diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-04-01 20:39:42 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-04-01 21:18:12 +0300 |
commit | 449c23ebc32eb45f8a6360c472bfbf5db6cd132f (patch) | |
tree | 217c5fc426b32e42647a1af2f50768885802138d /scripts/select-compile | |
parent | 704baab677029882a5924a59e3fb92f2295132a4 (diff) | |
download | ejit-449c23ebc32eb45f8a6360c472bfbf5db6cd132f.tar.gz ejit-449c23ebc32eb45f8a6360c472bfbf5db6cd132f.zip |
aarch64 linux seems to work
Diffstat (limited to 'scripts/select-compile')
-rwxr-xr-x | scripts/select-compile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/select-compile b/scripts/select-compile index fca7350..9eff9fd 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 + aarch64) echo "$JIT" ;; amd64) echo "$JIT" ;; x86*) echo "$JIT" ;; *) echo "$NOJIT" ;; |