2018-12-03 11:50:00 -06:00
|
|
|
set -e
|
|
|
|
|
|
|
|
unamestr=`uname`
|
|
|
|
if [[ "$unamestr" == 'Linux' ]]; then
|
|
|
|
dylib_ext='so'
|
|
|
|
elif [[ "$unamestr" == 'Darwin' ]]; then
|
|
|
|
dylib_ext='dylib'
|
|
|
|
else
|
|
|
|
echo "Unsupported os"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2019-07-30 06:37:47 -05:00
|
|
|
TARGET_TRIPLE=$(rustc -vV | grep host | cut -d: -f2 | tr -d " ")
|
2018-12-03 11:50:00 -06:00
|
|
|
|
2019-10-03 10:22:01 -05:00
|
|
|
export RUSTFLAGS='-Cpanic=abort -Cdebuginfo=2 -Zpanic-abort-tests -Zcodegen-backend='$(pwd)'/target/'$CHANNEL'/librustc_codegen_cranelift.'$dylib_ext' --sysroot '$(pwd)'/build_sysroot/sysroot'
|
2018-12-03 11:50:00 -06:00
|
|
|
RUSTC="rustc $RUSTFLAGS -L crate=target/out --out-dir target/out"
|
2019-05-31 05:35:04 -05:00
|
|
|
export RUSTC_LOG=warn # display metadata load errors
|
2019-08-10 09:50:23 -05:00
|
|
|
|
2019-08-11 10:33:52 -05:00
|
|
|
export LD_LIBRARY_PATH="$(pwd)/target/out:$(pwd)/build_sysroot/sysroot/lib/rustlib/$TARGET_TRIPLE/lib"
|
|
|
|
export DYLD_LIBRARY_PATH=$LD_LIBRARY_PATH
|