-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Rollup of 7 pull requests #60472
Rollup of 7 pull requests #60472
Commits on Apr 12, 2019
-
Configuration menu - View commit details
-
Copy full SHA for bee92b5 - Browse repository at this point
Copy the full SHA bee92b5View commit details
Commits on Apr 20, 2019
-
Configuration menu - View commit details
-
Copy full SHA for be33738 - Browse repository at this point
Copy the full SHA be33738View commit details
Commits on Apr 23, 2019
-
Configuration menu - View commit details
-
Copy full SHA for d8cc8dc - Browse repository at this point
Copy the full SHA d8cc8dcView commit details -
Configuration menu - View commit details
-
Copy full SHA for bd42e12 - Browse repository at this point
Copy the full SHA bd42e12View commit details
Commits on Apr 24, 2019
-
Configuration menu - View commit details
-
Copy full SHA for a912664 - Browse repository at this point
Copy the full SHA a912664View commit details -
Configuration menu - View commit details
-
Copy full SHA for c8baec9 - Browse repository at this point
Copy the full SHA c8baec9View commit details
Commits on May 1, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 3b24cf8 - Browse repository at this point
Copy the full SHA 3b24cf8View commit details
Commits on May 2, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 71338fc - Browse repository at this point
Copy the full SHA 71338fcView commit details -
libprofiler_builtins: Set compilation flags more correctly for C code.
In particular, set COMPILER_RT_HAS_FCNTL_LCK and COMPILER_RT_HAS_ATOMICS as appropriate.
Configuration menu - View commit details
-
Copy full SHA for d4dfbeb - Browse repository at this point
Copy the full SHA d4dfbebView commit details -
Configuration menu - View commit details
-
Copy full SHA for 31407e8 - Browse repository at this point
Copy the full SHA 31407e8View commit details -
Make find_attr_val a little bit more precise
`find_attr_val(&line, "since")` returns `Some(", issue = ")` when `line` is set to the following line: ``` [unstable(feature = "checked_duration_since", issue = "58402")] ``` Make `find_attr_val` use regex that is a little bit more precise (requires `=` after key name). It still does not handle all cases (e.g., extra leading chars in key name, or escaped quotes in value), but is good enough for now.
Configuration menu - View commit details
-
Copy full SHA for 8b82f68 - Browse repository at this point
Copy the full SHA 8b82f68View commit details -
Configuration menu - View commit details
-
Copy full SHA for b7f55ca - Browse repository at this point
Copy the full SHA b7f55caView commit details -
Configuration menu - View commit details
-
Copy full SHA for d5ba6d4 - Browse repository at this point
Copy the full SHA d5ba6d4View commit details -
Configuration menu - View commit details
-
Copy full SHA for d54477e - Browse repository at this point
Copy the full SHA d54477eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 90d3fa2 - Browse repository at this point
Copy the full SHA 90d3fa2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3b4fe7e - Browse repository at this point
Copy the full SHA 3b4fe7eView commit details -
Configuration menu - View commit details
-
Copy full SHA for c120fd8 - Browse repository at this point
Copy the full SHA c120fd8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4bcc828 - Browse repository at this point
Copy the full SHA 4bcc828View commit details -
Configuration menu - View commit details
-
Copy full SHA for 201f14b - Browse repository at this point
Copy the full SHA 201f14bView commit details -
Rollup merge of rust-lang#59928 - petrochenkov:denyambass, r=varkor
Make deprecation lint `ambiguous_associated_items` deny-by-default As requested by r? @Centril cc rust-lang#57644
Configuration menu - View commit details
-
Copy full SHA for 50be6df - Browse repository at this point
Copy the full SHA 50be6dfView commit details -
Rollup merge of rust-lang#60135 - Gilnaa:arm-none-eabi, r=nagisa
Added arm-none-eabi target Hello, This PR adds a new target for compiling bare-metal ARM Cortex-A programs. I've managed to build and use this new target, but I am unclear with regards to a few details: - I'm not sure what are the criteria for choosing between lld and gnu-ld - When trying to build with `./x.py build --target arm-none-eabi`, the script tries to compile with `cc`, instead of `arm-none-eabi-gcc`. It could find different cross-compilers just fine, but I didn't understand where I had to specify it. (I ended up specifying `CC_arm_none_eabi=arm-none-eabi-gcc` in the environment). - I couldn't find where I can exclude std from compiling for this target (as I guess occurs with other bare-metal targets). - Should I add a separate target for `eabihf`?
Configuration menu - View commit details
-
Copy full SHA for b7b4f25 - Browse repository at this point
Copy the full SHA b7b4f25View commit details -
Rollup merge of rust-lang#60173 - RalfJung:miri, r=oli-obk
update miri r? @oli-obk
Configuration menu - View commit details
-
Copy full SHA for e3f94c8 - Browse repository at this point
Copy the full SHA e3f94c8View commit details -
Rollup merge of rust-lang#60220 - euclio:rustdoc-test-fatal-parsing-e…
…rrors, r=QuietMisdreavus report fatal errors during doctest parsing Fixes rust-lang#59557.
Configuration menu - View commit details
-
Copy full SHA for 77ecb41 - Browse repository at this point
Copy the full SHA 77ecb41View commit details -
Rollup merge of rust-lang#60373 - rasendubi:lang-features-sort-since,…
… r=Centril Tidy: ensure lang features are sorted by since This is the tidy side of rust-lang#60361. What is left is actually splitting features into groups and sorting by since. This PR also likely to produce a small (a couple of lines) merge conflict with rust-lang#60362. r? @Centril
Configuration menu - View commit details
-
Copy full SHA for cd08f1c - Browse repository at this point
Copy the full SHA cd08f1cView commit details -
Rollup merge of rust-lang#60402 - michaelwoerister:update-profiler-rt…
…-build, r=alexcrichton libprofiler_builtins: Set compilation flags more correctly for C code. In particular, set `COMPILER_RT_HAS_FCNTL_LCK` and `COMPILER_RT_HAS_ATOMICS` as appropriate. This should get rid of the various runtime warnings when executing instrumented binaries. The build script is using a heuristic here that hopefully is sufficient for the time being. r? @alexcrichton Fixes rust-lang#59531.
Configuration menu - View commit details
-
Copy full SHA for daad979 - Browse repository at this point
Copy the full SHA daad979View commit details -
Rollup merge of rust-lang#60436 - Xanewok:update-rls, r=Manishearth
Update RLS and Cargo Fixes the `test-fail` RLS toolstate caused by rust-lang#59114. r? @Centril @Manishearth
Configuration menu - View commit details
-
Copy full SHA for acb25d7 - Browse repository at this point
Copy the full SHA acb25d7View commit details