diff options
| author | bjorn3 <bjorn3@users.noreply.github.com> | 2020-06-16 10:54:18 +0200 |
|---|---|---|
| committer | bjorn3 <bjorn3@users.noreply.github.com> | 2020-06-16 10:54:18 +0200 |
| commit | fcd596714bd50bf33ee4bbd8a0c36f646f116fc6 (patch) | |
| tree | 6b857e0fd9e4310bf1d995d3035ba395a45ceaa0 /build_sysroot | |
| parent | a76748e54a052c401e97648aac553bcc65ca0fcf (diff) | |
| download | rust-fcd596714bd50bf33ee4bbd8a0c36f646f116fc6.tar.gz rust-fcd596714bd50bf33ee4bbd8a0c36f646f116fc6.zip | |
Remove pin of the libc crate for the sysroot
The latest libc version has fixed the compilation error
Diffstat (limited to 'build_sysroot')
| -rw-r--r-- | build_sysroot/Cargo.lock | 5 | ||||
| -rw-r--r-- | build_sysroot/Cargo.toml | 2 |
2 files changed, 2 insertions, 5 deletions
diff --git a/build_sysroot/Cargo.lock b/build_sysroot/Cargo.lock index 7b66c220d48..3183d7660c6 100644 --- a/build_sysroot/Cargo.lock +++ b/build_sysroot/Cargo.lock @@ -135,9 +135,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.69" +version = "0.2.71" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99e85c08494b21a9054e7fe1374a732aeadaff3980b6990b94bfd3a70f690005" +checksum = "9457b06509d27052635f90d6466700c65095fdf75409b3fbdd903e988b886f49" dependencies = [ "rustc-std-workspace-core", ] @@ -229,7 +229,6 @@ dependencies = [ "alloc_system", "compiler_builtins", "core", - "libc", "std", "test", ] diff --git a/build_sysroot/Cargo.toml b/build_sysroot/Cargo.toml index a4f766cf89c..bb66d201a51 100644 --- a/build_sysroot/Cargo.toml +++ b/build_sysroot/Cargo.toml @@ -12,8 +12,6 @@ test = { path = "./sysroot_src/src/libtest" } alloc_system = { path = "./alloc_system" } -libc = { version = "=0.2.69", default-features = false } # FIXME rustc 1.45.0-nightly (7ebd87a7a 2020-05-08) ices on libc 0.2.70 - [patch.crates-io] rustc-std-workspace-core = { path = "./sysroot_src/src/tools/rustc-std-workspace-core" } rustc-std-workspace-alloc = { path = "./sysroot_src/src/tools/rustc-std-workspace-alloc" } |
