File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ rm -rf /tmp/rustc-pgo
7
7
python2.7 ../x.py build --target=$PGO_HOST --host=$PGO_HOST \
8
8
--stage 2 library/std --rust-profile-generate=/tmp/rustc-pgo
9
9
10
- ./build/$PGO_HOST /stage2/bin/rustc --edition=2018 \
10
+ RUSTC_BOOTSTRAP=1 ./build/$PGO_HOST /stage2/bin/rustc --edition=2018 \
11
11
--crate-type=lib ../library/core/src/lib.rs
12
12
13
13
# Download and build a single-file stress test benchmark on perf.rust-lang.org.
@@ -16,7 +16,9 @@ function pgo_perf_benchmark {
16
16
local github_prefix=https://raw.githubusercontent.com/rust-lang/rustc-perf/$PERF
17
17
local name=$1
18
18
curl -o /tmp/$name .rs $github_prefix /collector/benchmarks/$name /src/lib.rs
19
- ./build/$PGO_HOST /stage2/bin/rustc --edition=2018 --crate-type=lib /tmp/$name .rs
19
+
20
+ RUSTC_BOOTSTRAP=1 ./build/$PGO_HOST /stage2/bin/rustc --edition=2018 \
21
+ --crate-type=lib /tmp/$name .rs
20
22
}
21
23
22
24
pgo_perf_benchmark externs
You can’t perform that action at this time.
0 commit comments