diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-04-10 22:23:08 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-04-10 22:23:08 +0300 |
commit | 7628ce2432108ae6306457f242e7cc3ac75b9ac0 (patch) | |
tree | 32a7b59f0e91b4c82bdeb4de3f75c1a04cc247da /scripts/select-compile | |
parent | 0ba52d9043985baff61d4fae225420274d9ad9ab (diff) | |
parent | 531d307d310881e69efc8ae8c8119f5f5799e0f9 (diff) | |
download | ejit-7628ce2432108ae6306457f242e7cc3ac75b9ac0.tar.gz ejit-7628ce2432108ae6306457f242e7cc3ac75b9ac0.zip |
Diffstat (limited to 'scripts/select-compile')
-rwxr-xr-x | scripts/select-compile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/select-compile b/scripts/select-compile index fca7350..37c67a1 100755 --- a/scripts/select-compile +++ b/scripts/select-compile @@ -9,6 +9,11 @@ JIT="src/compile/compile.c" NOJIT="src/compile/nocompile.c" case "$ARCH" in + powerpc64le) echo "$JIT" ;; + mips64el) echo "$JIT" ;; + aarch64) echo "$JIT" ;; + mipsel) echo "$JIT" ;; + armhf) echo "$JIT" ;; amd64) echo "$JIT" ;; x86*) echo "$JIT" ;; *) echo "$NOJIT" ;; |