diff options
author | John Hodge <tpg@ucc.asn.au> | 2017-12-09 14:39:09 +0800 |
---|---|---|
committer | John Hodge <tpg@ucc.asn.au> | 2017-12-09 14:39:09 +0800 |
commit | 5a36982a14451bcc95bf10cef6cfae92acc0516e (patch) | |
tree | 37d88287e7bb53384d6e8a8eada8d7a258f9d499 | |
parent | 30aa97ca3d479719b78cbaaa3a1327c66d98de0c (diff) | |
download | mrust-5a36982a14451bcc95bf10cef6cfae92acc0516e.tar.gz |
TestRustcBootstrap - Remove verbose tar, remove custom cargo for official build
-rwxr-xr-x | TestRustcBootstrap.sh | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/TestRustcBootstrap.sh b/TestRustcBootstrap.sh index 7ed30018..3c0c7f25 100755 --- a/TestRustcBootstrap.sh +++ b/TestRustcBootstrap.sh @@ -34,18 +34,16 @@ echo "--- Running x.py, see ${WORKDIR}mrustc.log for progress" (cd ${WORKDIR} && mv build mrustc) rm -rf ${WORKDIR}mrustc-output cp -r ${WORKDIR}mrustc/rustc-1.20.0-src/build/x86_64-unknown-linux-gnu/stage2 ${WORKDIR}mrustc-output -tar -czvf ${WORKDIR}mrustc.tar.gz -C ${WORKDIR} mrustc-output +tar -czf ${WORKDIR}mrustc.tar.gz -C ${WORKDIR} mrustc-output # -# Build rustc by downloading the previous version of rustc -# > Note: This uses the locally-built cargo (due to subtle version differences) +# Build rustc by downloading the previous version of rustc (and its matching cargo) # echo "=== Building rustc bootstrap downloaded stage0" mkdir -p ${WORKDIR}official/ tar -xf rustc-1.20.0-src.tar.gz -C ${WORKDIR}official/ cat - > ${WORKDIR}official/rustc-1.20.0-src/config.toml <<EOF [build] -cargo = "${PREFIX}bin/cargo" full-bootstrap = true EOF echo "--- Running x.py, see ${WORKDIR}official.log for progress" @@ -54,4 +52,4 @@ echo "--- Running x.py, see ${WORKDIR}official.log for progress" (cd ${WORKDIR} && mv build official) rm -rf ${WORKDIR}official-output cp -r ${WORKDIR}official/rustc-1.20.0-src/build/x86_64-unknown-linux-gnu/stage2 ${WORKDIR}official-output -tar -czvf ${WORKDIR}official.tar.gz -C ${WORKDIR} official-output +tar -czf ${WORKDIR}official.tar.gz -C ${WORKDIR} official-output |