]> git.lizzy.rs Git - rust.git/blob - scripts/config.sh
Add custom driver
[rust.git] / scripts / config.sh
1 set -e
2
3 unamestr=`uname`
4 if [[ "$unamestr" == 'Linux' ]]; then
5    dylib_ext='so'
6 elif [[ "$unamestr" == 'Darwin' ]]; then
7    dylib_ext='dylib'
8 else
9    echo "Unsupported os"
10    exit 1
11 fi
12
13 HOST_TRIPLE=$(rustc -vV | grep host | cut -d: -f2 | tr -d " ")
14 TARGET_TRIPLE=$HOST_TRIPLE
15 #TARGET_TRIPLE="x86_64-pc-windows-gnu"
16 #TARGET_TRIPLE="aarch64-unknown-linux-gnu"
17
18 linker=''
19 RUN_WRAPPER=''
20 export JIT_SUPPORTED=1
21 if [[ "$HOST_TRIPLE" != "$TARGET_TRIPLE" ]]; then
22    export JIT_SUPPORTED=0
23    if [[ "$TARGET_TRIPLE" == "aarch64-unknown-linux-gnu" ]]; then
24       # We are cross-compiling for aarch64. Use the correct linker and run tests in qemu.
25       linker='-Clinker=aarch64-linux-gnu-gcc'
26       RUN_WRAPPER='qemu-aarch64 -L /usr/aarch64-linux-gnu'
27    elif [[ "$TARGET_TRIPLE" == "x86_64-pc-windows-gnu" ]]; then
28       # We are cross-compiling for Windows. Run tests in wine.
29       RUN_WRAPPER='wine'
30    else
31       echo "Unknown non-native platform"
32    fi
33 fi
34
35 export RUSTC=$(pwd)/"target/"$CHANNEL"/cg_clif"
36 export RUSTFLAGS=$linker
37 export RUSTDOCFLAGS=$linker' -Ztrim-diagnostic-paths=no -Cpanic=abort -Zpanic-abort-tests '\
38 '-Zcodegen-backend='$(pwd)'/target/'$CHANNEL'/librustc_codegen_cranelift.'$dylib_ext' --sysroot '$(pwd)'/build_sysroot/sysroot'
39
40 # FIXME remove once the atomic shim is gone
41 if [[ `uname` == 'Darwin' ]]; then
42    export RUSTFLAGS="$RUSTFLAGS -Clink-arg=-undefined -Clink-arg=dynamic_lookup"
43 fi
44
45 export LD_LIBRARY_PATH="$(pwd)/target/out:$(pwd)/build_sysroot/sysroot/lib/rustlib/"$TARGET_TRIPLE"/lib:\
46 $(pwd)/target/"$CHANNEL":$(rustc --print sysroot)/lib"
47 export DYLD_LIBRARY_PATH=$LD_LIBRARY_PATH
48
49 export CG_CLIF_DISPLAY_CG_TIME=1