forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
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 rust-lang#39601 - dumbbell:update-liblibc-to-include-…
…aarch64-unknown-freebsd, r=alexcrichton liblibc: Update to include `aarch64-unknown-freebsd` support
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule liblibc
updated
19 files
+2 −1 | .travis.yml | |
+2 −2 | Cargo.lock | |
+1 −1 | Cargo.toml | |
+1 −1 | README.md | |
+2 −1 | ci/docker/i686-unknown-linux-musl/Dockerfile | |
+171 −0 | ci/ios/deploy_and_run_on_ios_simulator.rs | |
+10 −0 | ci/run.sh | |
+5 −0 | libc-test/build.rs | |
+1 −0 | src/lib.rs | |
+2 −0 | src/unix/bsd/apple/mod.rs | |
+8 −0 | src/unix/bsd/freebsdlike/dragonfly/mod.rs | |
+30 −0 | src/unix/bsd/freebsdlike/freebsd/aarch64.rs | |
+8 −0 | src/unix/bsd/freebsdlike/freebsd/mod.rs | |
+68 −1 | src/unix/bsd/freebsdlike/mod.rs | |
+3 −0 | src/unix/bsd/netbsdlike/mod.rs | |
+2 −0 | src/unix/haiku/mod.rs | |
+1 −0 | src/unix/mod.rs | |
+3 −0 | src/unix/notbsd/mod.rs | |
+2 −0 | src/unix/solaris/mod.rs |