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 8 pull requests #68240

Closed
wants to merge 20 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
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
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
9f1452f
Update libssh2-sys to a version that can build for aarch64-pc-windows…
danielframpton Jan 14, 2020
535fc9c
Update iovec to a version with no winapi dependency
danielframpton Jan 14, 2020
9febc2b
Update to a version of cmake with windows arm64 support
danielframpton 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
8aa2a2c
Rollup merge of #68123 - crlf0710:linked_list_cursor, r=Amanieu
Dylan-DPC Jan 15, 2020
be5bd98
Rollup merge of #68194 - jonas-schievink:fix-thumb-ci, r=alexcrichton
Dylan-DPC Jan 15, 2020
d98dd60
Rollup merge of #68223 - SOF3:float-fract-doc, r=varkor
Dylan-DPC Jan 15, 2020
21bdb78
Rollup merge of #68227 - danielframpton:update-cmake, r=alexcrichton
Dylan-DPC Jan 15, 2020
b45c758
Rollup merge of #68229 - danielframpton:update-iovec, r=alexcrichton
Dylan-DPC Jan 15, 2020
66f7e04
Rollup merge of #68230 - danielframpton:update-libssh2-sys, r=alexcri…
Dylan-DPC Jan 15, 2020
db20048
Rollup merge of #68231 - danielframpton:windows-crosscompile, r=alexc…
Dylan-DPC Jan 15, 2020
e8349bb
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
17 changes: 8 additions & 9 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -514,9 +514,9 @@ dependencies = [

[[package]]
name = "cmake"
version = "0.1.38"
version = "0.1.42"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96210eec534fc3fbfc0452a63769424eaa80205fda6cea98e5b61cb3d97bcec8"
checksum = "81fb25b677f8bf1eb325017cb6bb8452f87969db0fedb4f757b297bee78a7c62"
dependencies = [
"cc",
]
Expand Down 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 Expand Up @@ -1581,12 +1581,11 @@ dependencies = [

[[package]]
name = "iovec"
version = "0.1.2"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbe6e417e7d0975db6512b90796e8ce223145ac4e33c377e4a42882a0e88bb08"
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
dependencies = [
"libc",
"winapi 0.2.8",
]

[[package]]
Expand Down Expand Up @@ -1806,9 +1805,9 @@ dependencies = [

[[package]]
name = "libssh2-sys"
version = "0.2.11"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "126a1f4078368b163bfdee65fbab072af08a1b374a5551b21e87ade27b1fbf9d"
checksum = "36aa6e813339d3a063292b77091dfbbb6152ff9006a459895fa5bebed7d34f10"
dependencies = [
"cc",
"libc",
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