Skip to content
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 #68242

Closed
wants to merge 23 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
73996df
Reset Formatter flags on exit from pad_integral
Mark-Simulacrum Jan 1, 2020
d59e9b4
Implement Cursor for linked lists. (RFC 2570).
crlf0710 Jan 11, 2020
091ba6d
Address review comments.
crlf0710 Jan 12, 2020
d2c509a
Address review comments.
crlf0710 Jan 12, 2020
0810210
Diagnostics should start lowercase
varkor Jan 10, 2020
8461fa5
Diagnostics should not end with a full stop
varkor Jan 10, 2020
e842489
Add backticks in appropriate places
varkor Jan 10, 2020
3de9b8a
Fix formatting ellipses at the end of some diagnostics
varkor Jan 10, 2020
117443e
Appease tidy
varkor Jan 10, 2020
1faa05d
Update `output-default.json` and rustdoc test
varkor Jan 10, 2020
b521491
Fix thumb target CI
jonas-schievink Jan 13, 2020
f37601a
Account for run-make tests in `is_up_to_date`
jonas-schievink Jan 13, 2020
06b9a73
Update APIs according to RFC change suggestions.
crlf0710 Jan 14, 2020
d43615f
Use 3.6 instead of 3.5 in float fract() documentation
SOF3 Jan 14, 2020
7d6271b
Better support for cross compilation on Windows.
danielframpton Jan 10, 2020
106fe0b
Update to a version of compiler_builtins with changes for fixes remai…
danielframpton Jan 14, 2020
69ba97f
Rollup merge of #67784 - Mark-Simulacrum:residual-pad-integral, r=dto…
Dylan-DPC Jan 15, 2020
7b59675
Rollup merge of #68096 - varkor:diagnostic-cleanup, r=Centril
Dylan-DPC Jan 15, 2020
7bda20b
Rollup merge of #68123 - crlf0710:linked_list_cursor, r=Amanieu
Dylan-DPC Jan 15, 2020
1c73bca
Rollup merge of #68194 - jonas-schievink:fix-thumb-ci, r=alexcrichton
Dylan-DPC Jan 15, 2020
919da48
Rollup merge of #68223 - SOF3:float-fract-doc, r=varkor
Dylan-DPC Jan 15, 2020
6cc3d5b
Rollup merge of #68231 - danielframpton:windows-crosscompile, r=alexc…
Dylan-DPC Jan 15, 2020
4ddc211
Rollup merge of #68233 - danielframpton:update-compiler-builtins, r=a…
Dylan-DPC Jan 15, 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
4 changes: 2 additions & 2 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -570,9 +570,9 @@ dependencies = [

[[package]]
name = "compiler_builtins"
version = "0.1.22"
version = "0.1.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6f083abf9bb9005a27d2da62706f661245278cb7096da37ab27410eaf60f2c1"
checksum = "b9975aefa63997ef75ca9cf013ff1bb81487aaa0b622c21053afd3b92979a7af"
dependencies = [
"cc",
"rustc-std-workspace-core",
Expand Down
2 changes: 2 additions & 0 deletions src/bootstrap/native.rs
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,8 @@ impl Step for Llvm {
cfg.define("CMAKE_SYSTEM_NAME", "NetBSD");
} else if target.contains("freebsd") {
cfg.define("CMAKE_SYSTEM_NAME", "FreeBSD");
} else if target.contains("windows") {
cfg.define("CMAKE_SYSTEM_NAME", "Windows");
}

cfg.define("LLVM_NATIVE_BUILD", builder.llvm_out(builder.config.build).join("build"));
Expand Down
Loading