about summary refs log tree commit diff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/tests.sh11
1 files changed, 10 insertions, 1 deletions
diff --git a/scripts/tests.sh b/scripts/tests.sh
index cd6b2181ace..9b5ffa40960 100755
--- a/scripts/tests.sh
+++ b/scripts/tests.sh
@@ -9,7 +9,16 @@ export HOST_TRIPLE=$(rustc -vV | grep host | cut -d: -f2 | tr -d " ")
 export TARGET_TRIPLE=${TARGET_TRIPLE:-$HOST_TRIPLE}
 
 export RUN_WRAPPER=''
-export JIT_SUPPORTED=1
+
+case "$TARGET_TRIPLE" in
+   x86_64*)
+      export JIT_SUPPORTED=1
+      ;;
+   *)
+      export JIT_SUPPORTED=0
+      ;;
+esac
+
 if [[ "$HOST_TRIPLE" != "$TARGET_TRIPLE" ]]; then
    export JIT_SUPPORTED=0
    if [[ "$TARGET_TRIPLE" == "aarch64-unknown-linux-gnu" ]]; then