We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 25f7711 + e5f011a commit 533f9d8Copy full SHA for 533f9d8
scripts/tests.sh
@@ -9,7 +9,16 @@ export HOST_TRIPLE=$(rustc -vV | grep host | cut -d: -f2 | tr -d " ")
9
export TARGET_TRIPLE=${TARGET_TRIPLE:-$HOST_TRIPLE}
10
11
export RUN_WRAPPER=''
12
-export JIT_SUPPORTED=1
+
13
+case "$TARGET_TRIPLE" in
14
+ x86_64*)
15
+ export JIT_SUPPORTED=1
16
+ ;;
17
+ *)
18
+ export JIT_SUPPORTED=0
19
20
+esac
21
22
if [[ "$HOST_TRIPLE" != "$TARGET_TRIPLE" ]]; then
23
export JIT_SUPPORTED=0
24
if [[ "$TARGET_TRIPLE" == "aarch64-unknown-linux-gnu" ]]; then
0 commit comments