Skip to content

Commit 764c006

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 f573db4 + c4889ec commit 764c006

Some content is hidden

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

73 files changed

+1232
-985
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

+8-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
@@ -44,6 +45,7 @@ matrix:
4445
RUST_CHECK_TARGET=check
4546
RUST_CONFIGURE_ARGS=--build=x86_64-apple-darwin
4647
SRC=.
48+
RUSTC_RETRY_LINKER_ON_SEGFAULT=1
4749
os: osx
4850
osx_image: xcode8.2
4951
install: &osx_install_sccache >
@@ -53,6 +55,7 @@ matrix:
5355
RUST_CHECK_TARGET=check
5456
RUST_CONFIGURE_ARGS=--build=i686-apple-darwin
5557
SRC=.
58+
RUSTC_RETRY_LINKER_ON_SEGFAULT=1
5659
os: osx
5760
osx_image: xcode8.2
5861
install: *osx_install_sccache
@@ -62,18 +65,18 @@ matrix:
6265
RUST_CONFIGURE_ARGS="--build=i686-apple-darwin --enable-extended"
6366
SRC=.
6467
DEPLOY=1
68+
RUSTC_RETRY_LINKER_ON_SEGFAULT=1
6569
os: osx
6670
osx_image: xcode8.2
6771
install: >
6872
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 &&
69-
chmod +x /usr/local/bin/sccache &&
70-
brew uninstall --ignore-dependencies openssl &&
71-
brew install openssl --universal --without-test
73+
chmod +x /usr/local/bin/sccache
7274
- env: >
7375
RUST_CHECK_TARGET=dist
7476
RUST_CONFIGURE_ARGS="--target=aarch64-apple-ios,armv7-apple-ios,armv7s-apple-ios,i386-apple-ios,x86_64-apple-ios --enable-extended"
7577
SRC=.
7678
DEPLOY=1
79+
RUSTC_RETRY_LINKER_ON_SEGFAULT=1
7780
os: osx
7881
osx_image: xcode8.2
7982
install: *osx_install_sccache
@@ -88,6 +91,7 @@ matrix:
8891
RUST_CONFIGURE_ARGS="--enable-extended"
8992
SRC=.
9093
DEPLOY_ALT=1
94+
RUSTC_RETRY_LINKER_ON_SEGFAULT=1
9195
os: osx
9296
osx_image: xcode8.2
9397
install: *osx_install_sccache
@@ -128,6 +132,7 @@ after_failure:
128132
echo "#### Build failed; Disk usage after running script:";
129133
df -h;
130134
du . | sort -nr | head -n100
135+
- cat obj/tmp/sccache.log
131136

132137
# Save tagged docker images we created and load them if they're available
133138
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)