Skip to content

Commit eaacbbe

Browse files
committed
[CI] Upgrade to rustc 1.45
Remove -Zno-landing-pads flag, because it was removed in rust-lang/rust#70175 Its replacement is panic=abort, which... we already use.
1 parent efbcedd commit eaacbbe

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

CI/tools.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,6 @@ def prefix(p, s):
313313
'-Zprofile',
314314
'-Ccodegen-units=1',
315315
'-Cinline-threshold=0',
316-
'-Zno-landing-pads',
317316
])
318317
# Build without --release
319318
environ['CARGO_BUILD_FLAGS'] = ''
@@ -364,9 +363,9 @@ def prefix(p, s):
364363
elif os == 'linux':
365364
environ['CARGO_TARGET'] = 'x86_64-unknown-linux-gnu'
366365
if variant in ('coverage', 'asan'):
367-
rust_version = 'nightly-2020-03-12'
366+
rust_version = 'nightly-2020-06-05'
368367
else:
369-
rust_version = '1.42.0'
368+
rust_version = '1.45.0'
370369
rust_install += [
371370
'{rustup} install {rust_version} --profile minimal',
372371
'PATH={cargo_dir}:$PATH',

helper/helper.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,4 +173,4 @@ compat/mingw.o: EXTRA_CPPFLAGS = -D'winansi_init()'=
173173

174174
# Bump when CI changes need a new helper build but the helper code itself
175175
# hasn't changed.
176-
DUMMY = 1
176+
DUMMY = 2

0 commit comments

Comments
 (0)