Skip to content

Commit 377f44d

Browse files
committed
Inline ext_config.sh
1 parent 944a48d commit 377f44d

File tree

2 files changed

+28
-33
lines changed

2 files changed

+28
-33
lines changed

scripts/ext_config.sh

Lines changed: 0 additions & 32 deletions
This file was deleted.

scripts/tests.sh

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,34 @@
33
set -e
44

55
source scripts/config.sh
6-
source scripts/ext_config.sh
6+
7+
export CG_CLIF_DISPLAY_CG_TIME=1
8+
export CG_CLIF_DISABLE_INCR_CACHE=1
9+
10+
export HOST_TRIPLE=$(rustc -vV | grep host | cut -d: -f2 | tr -d " ")
11+
export TARGET_TRIPLE=${TARGET_TRIPLE:-$HOST_TRIPLE}
12+
13+
export RUN_WRAPPER=''
14+
export JIT_SUPPORTED=1
15+
if [[ "$HOST_TRIPLE" != "$TARGET_TRIPLE" ]]; then
16+
export JIT_SUPPORTED=0
17+
if [[ "$TARGET_TRIPLE" == "aarch64-unknown-linux-gnu" ]]; then
18+
# We are cross-compiling for aarch64. Use the correct linker and run tests in qemu.
19+
export RUSTFLAGS='-Clinker=aarch64-linux-gnu-gcc '$RUSTFLAGS
20+
export RUN_WRAPPER='qemu-aarch64 -L /usr/aarch64-linux-gnu'
21+
elif [[ "$TARGET_TRIPLE" == "x86_64-pc-windows-gnu" ]]; then
22+
# We are cross-compiling for Windows. Run tests in wine.
23+
export RUN_WRAPPER='wine'
24+
else
25+
echo "Unknown non-native platform"
26+
fi
27+
fi
28+
29+
# FIXME fix `#[linkage = "extern_weak"]` without this
30+
if [[ "$(uname)" == 'Darwin' ]]; then
31+
export RUSTFLAGS="$RUSTFLAGS -Clink-arg=-undefined -Clink-arg=dynamic_lookup"
32+
fi
33+
734
export RUSTC=false # ensure that cg_llvm isn't accidentally used
835
MY_RUSTC="$(pwd)/build/bin/cg_clif $RUSTFLAGS -L crate=target/out --out-dir target/out -Cdebuginfo=2"
936

0 commit comments

Comments
 (0)