-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of #42772 - MaloJaffre:libc, r=alexcrichton
Update libc to 0.2.24 Fixes #42427.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule liblibc
updated
28 files
+4 −0 | .travis.yml | |
+21 −21 | Cargo.lock | |
+1 −1 | Cargo.toml | |
+52 −0 | ci/android-sysimage.sh | |
+14 −20 | ci/docker/x86_64-linux-android/Dockerfile | |
+4 −1 | ci/run.sh | |
+46 −4 | libc-test/build.rs | |
+3 −0 | src/dox.rs | |
+33 −1 | src/unix/bsd/apple/mod.rs | |
+4 −0 | src/unix/bsd/freebsdlike/mod.rs | |
+2 −0 | src/unix/bsd/mod.rs | |
+11 −0 | src/unix/bsd/netbsdlike/netbsd/mod.rs | |
+1 −0 | src/unix/bsd/netbsdlike/openbsdlike/mod.rs | |
+1 −0 | src/unix/haiku/mod.rs | |
+32 −6 | src/unix/mod.rs | |
+1 −0 | src/unix/notbsd/android/mod.rs | |
+0 −53 | src/unix/notbsd/linux/mips/mips32.rs | |
+9 −14 | src/unix/notbsd/linux/mips/mips64.rs | |
+67 −0 | src/unix/notbsd/linux/mips/mod.rs | |
+30 −0 | src/unix/notbsd/linux/mod.rs | |
+65 −0 | src/unix/notbsd/linux/other/b32/x86.rs | |
+65 −0 | src/unix/notbsd/linux/other/b64/x86_64.rs | |
+28 −0 | src/unix/notbsd/mod.rs | |
+269 −0 | src/unix/uclibc/mips/mips32.rs | |
+209 −0 | src/unix/uclibc/mips/mips64.rs | |
+476 −0 | src/unix/uclibc/mips/mod.rs | |
+1,769 −0 | src/unix/uclibc/mod.rs | |
+312 −0 | src/unix/uclibc/x86_64/mod.rs |