8000 Rollup of 8 pull requests by tmandry · Pull Request #68446 · rust-lang/rust · GitHub
[go: up one dir, main page]

Skip to content

Rollup of 8 pull requests #68446

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

Closed
wants to merge 36 commits into from
Closed
Changes from 2 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
470cdf5
add bare metal ARM Cortex-A targets to rustc
japaric Jan 15, 2020
de38803
Add -Wl,-znotext to default linker flags to link with lld 9 on FreeBS…
Jan 19, 2020
a3a0776
Merge branch 'master' into bare-metal-cortex-a
japaric Jan 20, 2020
2c0845c
Mark __msan_track_origins as an exported symbol for LTO
nikic Jan 19, 2020
d8c661a
Mark __msan_keep_going as an exported symbol for LTO
tmiasko Jan 21, 2020
dd0507c
Make `TooGeneric` error in WF checking a proper error
varkor Jan 20, 2020
8abbd0b
for now, do not build rust-std for the armv7a-none-eabihf target
japaric Jan 21, 2020
5dee7dd
Handle methods in try diagnostic
phi-gamma Jan 21, 2020
02e66ba
Test try diagnostics for impl and trait methods
phi-gamma Jan 21, 2020
db3b40c
Cleanup: rewrite conditional as match
phi-gamma Jan 21, 2020
d1bb7e1
Privatize private fields of OutputFilenames
Mark-Simulacrum Jan 21, 2020
8c6067c
Store filestem in a pre-formatted form
Mark-Simulacrum Jan 21, 2020
dc97181
Do not base path to append extension
Mark-Simulacrum Jan 21, 2020
ebd91f5
{syntax -> rustc_ast_passes}::node_count
Centril Jan 11, 2020
36f0322
syntax: move GLOBALS to attr module
Centril Jan 11, 2020
387de7c
pretty: remove ParseSess dependency
Centril Jan 11, 2020
589fc04
syntax: simplify HasAttrs code
Centril Jan 11, 2020
893aa4c
Move builtin attribute logic to new rustc_attr crate.
Centril Jan 11, 2020
a0f179e
1. move node_id to syntax
Centril Jan 11, 2020
294c323
1. move allow_internal_unstable to rustc_attr
Centril Jan 11, 2020
67a18c6
syntax::print -> new crate rustc_ast_pretty
Centril Jan 11, 2020
efe7c1f
pacify the parallel compiler
Centril Jan 17, 2020
203d255
remove rustc_ast_pretty dep from rustc
Centril Jan 17, 2020
3860bc5
syntax: reexport attr globals
Centril Jan 18, 2020
407f879
pretty: injected_crate_name -> has_injected_crate
Centril Jan 18, 2020
a278c96
fix fallout in tests
Centril Jan 18, 2020
03b515a
pretty: raise recursion_limit = 256
Centril Jan 21, 2020
eb2da27
bootstrap: update clippy subcmd decription
matthiaskrgr Jan 22, 2020
4272585
Rollup merge of #68133 - Centril:slimmer-syntax, r=petrochenkov
tmandry Jan 22, 2020
ab20ef4
Rollup merge of #68253 - japaric:bare-metal-cortex-a, r=alexcrichton
tmandry Jan 22, 2020
4fe9d2f
Rollup merge of #68361 - t6:patch-freebsd-lld-i386, r=alexcrichton
tmandry Jan 22, 2020
917e683
Rollup merge of #68388 - varkor:toogeneric-wf, r=eddyb
tmandry Jan 22, 2020
53c1e6f
Rollup merge of #68409 - sinkuu:temp_path, r=Mark-Simulacrum
tmandry Jan 22, 2020
7e9608c
Rollup merge of #68410 - tmiasko:msan-lto, r=varkor
tmandry Jan 22, 2020
41b00c0
Rollup merge of #68425 - phi-gamma:try-method, r=varkor
tmandry Jan 22, 2020
c6035ab
Rollup merge of #68440 - matthiaskrgr:xpyclippy, r=Mark-Simulacrum
tmandry Jan 22, 2020
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
2 changes: 1 addition & 1 deletion src/bootstrap/flags.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Usage: x.py <subcommand> [options] [<paths>...]
Subcommands:
build Compile either the compiler or libraries
check Compile either the compiler or libraries, using cargo check
clippy Run clippy
clippy Run clippy (uses rustup/cargo-installed clippy binary)
fix Run cargo fix
fmt Run rustfmt
test Build and run some test suites
Expand Down
0