This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22set -e
33
4- # CG_CLIF_FORCE_GNU_AS will force usage of as instead of the LLVM backend of rustc as we
4+ # CG_CLIF_FORCE_GNU_AS will force usage of as instead of the LLVM backend of rustc as
55# the LLVM backend isn't compiled in here.
66export CG_CLIF_FORCE_GNU_AS=1
77
@@ -11,11 +11,13 @@ export CG_CLIF_FORCE_GNU_AS=1
1111CG_CLIF_STDLIB_REMAP_PATH_PREFIX=/rustc/FAKE_PREFIX ./y.sh build
1212
1313echo " [SETUP] Rust fork"
14- git clone https://github.com/rust-lang/rust.git --filter=tree:0 || true
14+ git clone --quiet https://github.com/rust-lang/rust.git --filter=tree:0 || true
1515pushd rust
1616git fetch
17- git checkout -- .
18- git checkout " $( rustc -V | cut -d' ' -f3 | tr -d ' (' ) "
17+ git checkout --no-progress -- .
18+ git checkout --no-progress " $( rustc -V | cut -d' ' -f3 | tr -d ' (' ) "
19+
20+ git submodule update --quiet --init src/tools/cargo library/backtrace library/stdarch
1921
2022git -c user.name=Dummy -c user.email=dummy@example.com -c commit.gpgSign=false \
2123 am ../patches/* -stdlib-* .patch
You can’t perform that action at this time.
0 commit comments