rust/scripts/test_bootstrap.sh

15 lines
327 B
Bash
Executable file

#!/usr/bin/env bash
set -e
cd "$(dirname "$0")/../"
source ./scripts/setup_rust_fork.sh
echo "[TEST] Bootstrap of rustc"
pushd rust
rm -r compiler/rustc_codegen_cranelift/{Cargo.*,src}
cp ../Cargo.* compiler/rustc_codegen_cranelift/
cp -r ../src compiler/rustc_codegen_cranelift/src
./x.py build --stage 1 library/std
popd