Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
8539425
Stabilize unsigned_abs
jhpratt Jan 13, 2021
edf2e37
Use unsigned_abs throughout repository
jhpratt Jan 13, 2021
0c8db16
Add `core::stream::Stream`
yoshuawuyts Nov 13, 2020
e94cf57
Make functional record update/struct update syntax works inside closu…
null-sleep Jan 23, 2021
a1b1132
Remove `Stream::next`
yoshuawuyts Jan 15, 2021
328abfb
Slight simplification of chars().count()
gilescope Jan 26, 2021
425a70a
Removing if so it's more like the previous implementation.
gilescope Jan 26, 2021
c07e558
Let's try the most idiomatic way.
gilescope Jan 26, 2021
a623ea5
Same instructions, but simpler.
gilescope Jan 26, 2021
d3c69a4
Warn write-only fields
sanxiyn Jan 28, 2021
899aae4
Simplify base_expr
sanxiyn Jan 28, 2021
85ad773
Add missing brace
oli-obk Jan 28, 2021
f620b5c
rustdoc: Remove unnecessary optional
camelid Jan 29, 2021
02094f9
Updated Vec::splice documentation
SOF3 Jan 29, 2021
5e983d7
Add a test for syntax like: ..t.s
null-sleep Jan 29, 2021
63714af
update rustfmt to v1.4.34
calebcartwright Jan 29, 2021
d8b5745
Treat nightlies for a version as complete
est31 Jan 28, 2021
dd18c48
Add tests
est31 Jan 28, 2021
c2c2e8d
`fn cold_path` doesn't need to be pub
henryboisdequin Jan 29, 2021
fd5fb86
fix typo
henryboisdequin Jan 29, 2021
08141a5
Add missiong variants in match binding
GuillaumeGomez Jan 29, 2021
13ffa43
rename raw_const/mut -> const/mut_addr_of, and stabilize them
RalfJung Jan 10, 2021
718398c
Fix typo in pat.rs
eltociear Jan 29, 2021
807b5f5
Don't print error output from rustup when detecting default build triple
jyn514 Jan 29, 2021
db115f1
Don't clone LLVM submodule when download-ci-llvm is set
jyn514 Jan 29, 2021
915a04e
Consider Scalar to be a bool only if its unsigned
nagisa Dec 31, 2020
ecd7cb1
Rollup merge of #79023 - yoshuawuyts:stream, r=KodrAus
JohnTitor Jan 30, 2021
a5c12ea
Rollup merge of #80562 - nagisa:nagisa/bools-are-unsigned, r=eddyb
JohnTitor Jan 30, 2021
b94d84d
Rollup merge of #80886 - RalfJung:stable-raw-ref-macros, r=m-ou-se
JohnTitor Jan 30, 2021
91ea1cb
Rollup merge of #80959 - jhpratt:unsigned_abs-stabilization, r=m-ou-se
JohnTitor Jan 30, 2021
7fa991f
Rollup merge of #81291 - sexxi-goose:fix-struct-update-functional-rec…
JohnTitor Jan 30, 2021
c26dd4d
Rollup merge of #81409 - gilescope:chars_count, r=joshtriplett
JohnTitor Jan 30, 2021
fe27dea
Rollup merge of #81468 - est31:cfg_version, r=petrochenkov
JohnTitor Jan 30, 2021
774ba83
Rollup merge of #81473 - sanxiyn:write-only-field, r=oli-obk
JohnTitor Jan 30, 2021
b43c1d5
Rollup merge of #81495 - camelid:rustdoc-output_format-optional, r=Gu…
JohnTitor Jan 30, 2021
0f11a94
Rollup merge of #81499 - SOF3:patch-1, r=sanxiyn
JohnTitor Jan 30, 2021
6090c57
Rollup merge of #81501 - calebcartwright:update-rustfmt, r=sanxiyn
JohnTitor Jan 30, 2021
ba40cea
Rollup merge of #81505 - henryboisdequin:cold_path-not-pub, r=sanxiyn
JohnTitor Jan 30, 2021
596b394
Rollup merge of #81512 - GuillaumeGomez:cleanup-fixme-rustdoc, r=buga…
JohnTitor Jan 30, 2021
5df611c
Rollup merge of #81515 - eltociear:patch-7, r=jonas-schievink
JohnTitor Jan 30, 2021
e3905aa
Rollup merge of #81519 - jyn514:rustup-toolchain, r=Mark-Simulacrum
JohnTitor Jan 30, 2021
31e7634
Rollup merge of #81520 - jyn514:rustc2, r=Mark-Simulacrum
JohnTitor Jan 30, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Don't clone LLVM submodule when download-ci-llvm is set
Previously, `downloading_llvm` would check `self.build` while it was
still an empty string, and think it was always false. This fixes the
check.
  • Loading branch information
jyn514 committed Jan 29, 2021
commit db115f13f398ace4a207afc1beacde6a990f2f53
2 changes: 1 addition & 1 deletion src/bootstrap/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -1085,10 +1085,10 @@ def bootstrap(help_triggered):
else:
build.set_normal_environment()

build.build = args.build or build.build_triple()
build.update_submodules()

# Fetch/build the bootstrap
build.build = args.build or build.build_triple()
build.download_stage0()
sys.stdout.flush()
build.ensure_vendored()
Expand Down