Skip to content

Rollup of 11 pull requests #67091

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 25 commits into from
Dec 6, 2019
Merged
Changes from 2 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
b85d5f4
Fix angle bracket formatting when dumping MIR debug vars
osa1 Dec 3, 2019
dc1a428
Modified the testcases for VxWorks
Nov 26, 2019
b6b0fd9
rustdoc: Add test for fixed issue
ollie27 Dec 4, 2019
a8ec620
Remove potential cfgs duplicates
GuillaumeGomez Dec 3, 2019
22d9f20
SGX: Fix target linker used by bootstrap
Dec 4, 2019
16d2178
Migrate to LLVM{Get,Set}ValueName2
cuviper Dec 4, 2019
92bc35f
Simplify {IoSlice, IoSliceMut}::advance examples and tests
tmiasko Dec 5, 2019
8655ad5
codegen: mark invalid SetDiscriminant unreachable
RalfJung Dec 5, 2019
e822235
add a test
RalfJung Dec 5, 2019
e5d50e3
comments
RalfJung Dec 5, 2019
f5bd947
use abort instead of unreachable
RalfJung Dec 5, 2019
5ddfbc2
Fix Query type docs
osa1 Dec 6, 2019
de255a9
Make try_mark_previous_green aware of cycles.
gizmondo Dec 6, 2019
79f8764
Remove boxed closures in address parser.
reitermarkus Dec 6, 2019
2a4f638
Rollup merge of #66846 - gizmondo:master, r=michaelwoerister
JohnTitor Dec 6, 2019
afd9e95
Rollup merge of #66959 - GuillaumeGomez:cfg-duplicates, r=eddyb
JohnTitor Dec 6, 2019
7249af0
Rollup merge of #66988 - osa1:issue66985, r=matthewjasper
JohnTitor Dec 6, 2019
cdbdb68
Rollup merge of #66998 - Wind-River:master_up, r=alexcrichton
JohnTitor Dec 6, 2019
0df1609
Rollup merge of #67008 - ollie27:rustdoc_issue_61732, r=Centril
JohnTitor Dec 6, 2019
fd4cec0
Rollup merge of #67023 - jethrogb:jb/bootstrap-target-linker, r=alexc…
JohnTitor Dec 6, 2019
0b471bf
Rollup merge of #67033 - cuviper:ValueName2, r=rkruppe
JohnTitor Dec 6, 2019
d1397db
Rollup merge of #67049 - tmiasko:io-slice-advance, r=rkruppe
JohnTitor Dec 6, 2019
c85284e
Rollup merge of #67054 - RalfJung:set-discriminant-unreachable, r=oli…
JohnTitor Dec 6, 2019
cc7c45f
Rollup merge of #67081 - osa1:fix_query_type_docs, r=Dylan-DPC
JohnTitor Dec 6, 2019
931be6c
Rollup merge of #67085 - reitermarkus:addr-parser, r=Mark-Simulacrum
JohnTitor Dec 6, 2019
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
1 change: 1 addition & 0 deletions src/bootstrap/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -810,6 +810,7 @@ impl Build {
!target.contains("emscripten") &&
!target.contains("wasm32") &&
!target.contains("nvptx") &&
!target.contains("fortanix") &&
!target.contains("fuchsia") {
Some(self.cc(target))
} else {
Expand Down