Skip to content

Commit 1727b23

Browse files
committed
Auto merge of #40432 - alexcrichton:rollup, r=alexcrichton
Rollup of 38 pull requests - Successful merges: #39202, #39820, #39918, #39921, #40092, #40146, #40199, #40225, #40239, #40257, #40259, #40261, #40277, #40278, #40287, #40297, #40311, #40315, #40319, #40324, #40336, #40340, #40344, #40345, #40367, #40369, #40372, #40373, #40379, #40385, #40386, #40389, #40400, #40404, #40410, #40422, #40423, #40424 - Failed merges: #40220, #40329, #40426
2 parents 71c058b + 3493d91 commit 1727b23

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+968
-898
lines changed

.gitmodules

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
path = src/doc/nomicon
2323
url = https://github.com/rust-lang-nursery/nomicon
2424
[submodule "src/tools/cargo"]
25-
path = src/tools/cargo
25+
path = cargo
2626
url = https://github.com/rust-lang/cargo
2727
[submodule "reference"]
2828
path = src/doc/reference

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ matrix:
2020
- env: IMAGE=dist-armv7-aarch64-linux DEPLOY=1
2121
- env: IMAGE=dist-freebsd DEPLOY=1
2222
- env: IMAGE=dist-i586-gnu-i686-musl DEPLOY=1
23+
- env: IMAGE=dist-fuchsia DEPLOY=1
2324
- env: IMAGE=dist-mips-linux DEPLOY=1
2425
- env: IMAGE=dist-mips64-linux DEPLOY=1
2526
- env: IMAGE=dist-powerpc-linux DEPLOY=1
@@ -69,9 +70,7 @@ matrix:
6970
osx_image: xcode8.2
7071
install: >
7172
travis_retry curl -o /usr/local/bin/sccache https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-02-25-sccache-x86_64-apple-darwin &&
72-
chmod +x /usr/local/bin/sccache &&
73-
brew uninstall --ignore-dependencies openssl &&
74-
brew install openssl --universal --without-test
73+
chmod +x /usr/local/bin/sccache
7574
- env: >
7675
RUST_CHECK_TARGET=dist
7776
RUST_CONFIGURE_ARGS="--target=aarch64-apple-ios,armv7-apple-ios,armv7s-apple-ios,i386-apple-ios,x86_64-apple-ios --enable-extended"
@@ -133,6 +132,7 @@ after_failure:
133132
echo "#### Build failed; Disk usage after running script:";
134133
df -h;
135134
du . | sort -nr | head -n100
135+
- cat obj/tmp/sccache.log
136136

137137
# Save tagged docker images we created and load them if they're available
138138
before_cache:

cargo

Submodule cargo added at 5f3b9c4

configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ case $CFG_CPUTYPE in
512512
CFG_OSTYPE="${CFG_OSTYPE}eabihf"
513513
;;
514514

515-
armv7l)
515+
armv7l | armv8l)
516516
CFG_CPUTYPE=armv7
517517
CFG_OSTYPE="${CFG_OSTYPE}eabihf"
518518
;;

0 commit comments

Comments
 (0)