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