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