2018-12-14 13:58:33 +01:00
|
|
|
#!/bin/bash
|
2019-07-30 13:37:47 +02:00
|
|
|
|
|
|
|
# Requires the CHANNEL env var to be set to `debug` or `release.`
|
|
|
|
|
2018-12-14 13:58:33 +01:00
|
|
|
set -e
|
|
|
|
|
2020-11-03 11:00:04 +01:00
|
|
|
source ./config.sh
|
2019-07-30 13:37:47 +02:00
|
|
|
|
2020-11-03 11:00:04 +01:00
|
|
|
dir=$(pwd)
|
2018-12-14 13:58:33 +01:00
|
|
|
|
2020-09-29 17:51:52 +02:00
|
|
|
# Use rustc with cg_clif as hotpluggable backend instead of the custom cg_clif driver so that
|
|
|
|
# build scripts are still compiled using cg_llvm.
|
2020-11-03 11:00:04 +01:00
|
|
|
export RUSTC=$dir"/cg_clif_build_sysroot"
|
2020-10-10 16:41:31 +02:00
|
|
|
export RUSTFLAGS=$RUSTFLAGS" --clif"
|
2020-09-29 17:51:52 +02:00
|
|
|
|
2020-11-03 11:00:04 +01:00
|
|
|
cd $(dirname "$0")
|
|
|
|
|
|
|
|
# Cleanup for previous run
|
|
|
|
# v Clean target dir except for build scripts and incremental cache
|
|
|
|
rm -r target/*/{debug,release}/{build,deps,examples,libsysroot*,native} 2>/dev/null || true
|
|
|
|
|
|
|
|
# We expect the target dir in the default location. Guard against the user changing it.
|
|
|
|
export CARGO_TARGET_DIR=target
|
|
|
|
|
2018-12-14 13:58:33 +01:00
|
|
|
# Build libs
|
2020-09-29 17:51:52 +02:00
|
|
|
export RUSTFLAGS="$RUSTFLAGS -Zforce-unstable-if-unmarked -Cpanic=abort"
|
2020-11-03 11:00:04 +01:00
|
|
|
if [[ "$1" != "--debug" ]]; then
|
2019-07-30 13:37:47 +02:00
|
|
|
sysroot_channel='release'
|
2020-08-19 13:51:49 +02:00
|
|
|
# FIXME Enable incremental again once rust-lang/rust#74946 is fixed
|
2020-10-05 11:12:41 +02:00
|
|
|
# FIXME Enable -Zmir-opt-level=2 again once it doesn't ice anymore
|
|
|
|
CARGO_INCREMENTAL=0 RUSTFLAGS="$RUSTFLAGS" cargo build --target $TARGET_TRIPLE --release
|
2018-12-14 13:58:33 +01:00
|
|
|
else
|
2019-07-30 13:37:47 +02:00
|
|
|
sysroot_channel='debug'
|
2018-12-14 13:58:33 +01:00
|
|
|
cargo build --target $TARGET_TRIPLE
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Copy files to sysroot
|
2020-11-03 11:00:04 +01:00
|
|
|
mkdir -p $dir/sysroot/lib/rustlib/$TARGET_TRIPLE/lib/
|
|
|
|
cp -a target/$TARGET_TRIPLE/$sysroot_channel/deps/* $dir/sysroot/lib/rustlib/$TARGET_TRIPLE/lib/
|