2018-08-10 12:09:21 -05:00
|
|
|
#!/bin/bash
|
2019-07-30 07:51:05 -05:00
|
|
|
set -e
|
|
|
|
|
2020-09-29 07:43:34 -05:00
|
|
|
export RUSTFLAGS="-Zrun_dsymutil=no"
|
2019-07-30 06:37:47 -05:00
|
|
|
|
2020-11-02 06:17:52 -06:00
|
|
|
./build.sh --without-sysroot "$@"
|
2018-08-08 12:46:16 -05:00
|
|
|
|
2018-08-31 12:50:26 -05:00
|
|
|
rm -r target/out || true
|
2018-08-14 15:01:18 -05:00
|
|
|
|
2020-11-02 11:16:57 -06:00
|
|
|
scripts/tests.sh no_sysroot
|
2019-03-02 14:09:28 -06:00
|
|
|
|
2020-11-02 06:17:52 -06:00
|
|
|
./build.sh "$@"
|
2018-10-08 12:40:06 -05:00
|
|
|
|
2020-11-02 11:16:57 -06:00
|
|
|
scripts/tests.sh base_sysroot
|
|
|
|
scripts/tests.sh extended_sysroot
|