-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #33500 - Nercury:update-aarch64-android-target-to-match…
…-abi, r=alexcrichton Update aarch64-linux-android target to match android abi. - Changed `target_env` to "gnu" to empty "" for all android targets because it does not matter for android. - The PR #33048 added "max_atomic_width" for arm-android but missed recently added armv7-android. Add it there too. - Added features `+neon,+fp-armv8` because they [must exist on `aarch64` android](http://developer.android.com/ndk/guides/cpu-features.html). - Update libc to include rust-lang/libc#282 so that rust's std lib works on android's aarch64 (the main issue there was incorrect structure alignment on 64-bit arm). r? @alexcrichton
- Loading branch information
Showing
5 changed files
with
8 additions
and
4 deletions.
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters