Skip to content

Commit 6e18e62

Browse files
committed
Auto merge of #38923 - petrochenkov:scheck, r=alexcrichton
Avoid large number of stage 0 warnings about --no-stack-check ``` .... rustc: x86_64-pc-windows-gnu/stage0/lib/rustlib/x86_64-pc-windows-gnu/lib/libstd warning: the --no-stack-check flag is deprecated and does nothing rustc: x86_64-pc-windows-gnu/stage0/lib/rustlib/x86_64-pc-windows-gnu/lib/libgetopts warning: the --no-stack-check flag is deprecated and does nothing rustc: x86_64-pc-windows-gnu/stage0/lib/rustlib/x86_64-pc-windows-gnu/lib/libterm warning: the --no-stack-check flag is deprecated and does nothing rustc: x86_64-pc-windows-gnu/stage0/lib/rustlib/x86_64-pc-windows-gnu/lib/liblog warning: the --no-stack-check flag is deprecated and does nothing .... ``` r? @alexcrichton
2 parents 7aab3d3 + 39e1a7e commit 6e18e62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mk/main.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ endif
175175
# that the snapshot will be generated with a statically linked rustc so we only
176176
# have to worry about the distribution of one file (with its native dynamic
177177
# dependencies)
178-
RUSTFLAGS_STAGE0 += -C prefer-dynamic -C no-stack-check
178+
RUSTFLAGS_STAGE0 += -C prefer-dynamic
179179
RUSTFLAGS_STAGE1 += -C prefer-dynamic
180180
RUST_LIB_FLAGS_ST2 += -C prefer-dynamic
181181
RUST_LIB_FLAGS_ST3 += -C prefer-dynamic

0 commit comments

Comments
 (0)