Skip to content

Commit ec73ef9

Browse files
committed
Merge branch 'master' of git://github.com/rust-lang/rust
* 'master' of git://github.com/rust-lang/rust: (70 commits) sanitizer-dylib: only run where std for x86_64-linux is available travis: Fix build order of dist-x86-linux fix the sanitizer-dylib test on non x86_64 linux hosts dist-x86-linux: install newer kernel headers enable sanitizers on build job that tests x86_64 linux enable sanitizers on x86_64-linux releases use helper function in the rebuild logic of the rustc_*san crates build/test the sanitizers only when --enable-sanitizers is used sanitizer support Add missing urls on join_paths Add test for #27433 Add more examples, get everything passing at last. Remove some leftover makefiles. Add more test for rustdoc --test Rename manifest_version to manifest-version reference: clarify #[cfg] section Bump stable release date rustbuild: Clean build/dist on `make clean` Add missing urls for current_dir review nits ...
2 parents 4268872 + fd2f8a4 commit ec73ef9

File tree

303 files changed

+7866
-10378
lines changed

Some content is hidden

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

303 files changed

+7866
-10378
lines changed

Diff for: .travis.yml

+1-8
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ matrix:
1313
include:
1414
# Linux builders, all docker images
1515
- env: IMAGE=android DEPLOY=1
16+
- env: IMAGE=armhf-gnu
1617
- env: IMAGE=cross DEPLOY=1
1718
- env: IMAGE=linux-tested-targets DEPLOY=1
1819
- env: IMAGE=dist-arm-linux DEPLOY=1
@@ -32,7 +33,6 @@ matrix:
3233
- env: IMAGE=x86_64-gnu-aux
3334
- env: IMAGE=x86_64-gnu-debug
3435
- env: IMAGE=x86_64-gnu-nopt
35-
- env: IMAGE=x86_64-gnu-make
3636
- env: IMAGE=x86_64-gnu-llvm-3.7 ALLOW_PR=1 RUST_BACKTRACE=1
3737
- env: IMAGE=x86_64-gnu-distcheck
3838
- env: IMAGE=x86_64-gnu-incremental
@@ -56,13 +56,6 @@ matrix:
5656
os: osx
5757
osx_image: xcode8.2
5858
install: *osx_install_sccache
59-
- env: >
60-
RUST_CHECK_TARGET=check
61-
RUST_CONFIGURE_ARGS=--build=x86_64-apple-darwin --disable-rustbuild
62-
SRC=.
63-
os: osx
64-
osx_image: xcode8.2
65-
install: *osx_install_sccache
6659
- env: >
6760
RUST_CHECK_TARGET=dist
6861
RUST_CONFIGURE_ARGS="--target=aarch64-apple-ios,armv7-apple-ios,armv7s-apple-ios,i386-apple-ios,x86_64-apple-ios --enable-extended"

Diff for: CONTRIBUTING.md

-5
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,6 @@ system internals, try asking in [`#rust-internals`][pound-rust-internals].
9393

9494
[bootstrap]: https://github.com/rust-lang/rust/tree/master/src/bootstrap/
9595

96-
> **Note**: the build system was recently rewritten from a jungle of makefiles
97-
> to the current incarnation you'll see in `src/bootstrap`. If you experience
98-
> bugs you can temporarily revert back to the makefiles with
99-
> `--disable-rustbuild` passed to `./configure`.
100-
10196
### Configuration
10297

10398
Before you can start building the compiler you need to configure the build for

Diff for: Makefile.in

-297
This file was deleted.

Diff for: RELEASES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Version 1.15.1 (2017-02-07)
1+
Version 1.15.1 (2017-02-08)
22
===========================
33

44
* [Fix IntoIter::as_mut_slice's signature][39466]

Diff for: appveyor.yml

-12
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,6 @@ environment:
1515
SCRIPT: python x.py test --host i686-pc-windows-msvc --target i686-pc-windows-msvc && python x.py dist
1616
DEPLOY: 1
1717

18-
# MSVC makefiles
19-
- MSYS_BITS: 64
20-
RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --disable-rustbuild
21-
RUST_CHECK_TARGET: check
22-
2318
# MSVC cargotest
2419
- MSYS_BITS: 64
2520
NO_VENDOR: 1
@@ -58,13 +53,6 @@ environment:
5853
MINGW_DIR: mingw32
5954
DEPLOY: 1
6055

61-
- MSYS_BITS: 32
62-
RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu --disable-rustbuild
63-
RUST_CHECK_TARGET: check
64-
MINGW_URL: https://s3.amazonaws.com/rust-lang-ci
65-
MINGW_ARCHIVE: i686-4.9.2-release-win32-dwarf-rt_v4-rev4.7z
66-
MINGW_DIR: mingw32
67-
6856
- MSYS_BITS: 64
6957
SCRIPT: python x.py test && python x.py dist
7058
RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu --enable-extended

0 commit comments

Comments
 (0)