-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update libc to bring in updates for android's aarch64.
- 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
+2 −2 | .travis.yml | |
+1 −1 | Cargo.toml | |
+12 −3 | README.md | |
+3 −3 | ci/run-travis.sh | |
+11 −19 | libc-test/Cargo.lock | |
+5 −6 | libc-test/build.rs | |
+1 −0 | src/lib.rs | |
+124 −0 | src/unix/bsd/apple/mod.rs | |
+110 −1 | src/unix/bsd/freebsdlike/mod.rs | |
+15 −0 | src/unix/bsd/mod.rs | |
+43 −0 | src/unix/bsd/openbsdlike/bitrig.rs | |
+62 −0 | src/unix/bsd/openbsdlike/mod.rs | |
+21 −0 | src/unix/bsd/openbsdlike/netbsd.rs | |
+1 −0 | src/unix/bsd/openbsdlike/openbsd.rs | |
+60 −5 | src/unix/mod.rs | |
+116 −0 | src/unix/notbsd/android/b32.rs | |
+126 −0 | src/unix/notbsd/android/b64.rs | |
+34 −146 | src/unix/notbsd/android/mod.rs | |
+18 −8 | src/unix/notbsd/linux/mips.rs | |
+103 −29 | src/unix/notbsd/linux/mod.rs | |
+13 −0 | src/unix/notbsd/linux/musl/b32/x86.rs | |
+15 −0 | src/unix/notbsd/linux/musl/b64/x86_64.rs | |
+0 −8 | src/unix/notbsd/linux/musl/mod.rs | |
+22 −1 | src/unix/notbsd/linux/other/b32/x86.rs | |
+28 −1 | src/unix/notbsd/linux/other/b64/x86_64.rs | |
+18 −8 | src/unix/notbsd/linux/other/mod.rs | |
+55 −4 | src/unix/notbsd/mod.rs | |
+126 −0 | src/unix/solaris/mod.rs |