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 1
1
#! /usr/bin/env bash
2
2
set -e
3
3
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
5
5
# the LLVM backend isn't compiled in here.
6
6
export CG_CLIF_FORCE_GNU_AS=1
7
7
@@ -11,11 +11,13 @@ export CG_CLIF_FORCE_GNU_AS=1
11
11
CG_CLIF_STDLIB_REMAP_PATH_PREFIX=/rustc/FAKE_PREFIX ./y.sh build
12
12
13
13
echo " [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
15
15
pushd rust
16
16
git 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
19
21
20
22
git -c user.name=Dummy -c user.email=dummy@example.com -c commit.gpgSign=false \
21
23
am ../patches/* -stdlib-* .patch
You can’t perform that action at this time.
0 commit comments