Skip to content

Commit 6627ef2

Browse files
committed
Stabilize in 1.19
2 parents 158b085 + 852b7cb commit 6627ef2

File tree

909 files changed

+26942
-14581
lines changed

Some content is hidden

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

909 files changed

+26942
-14581
lines changed

.gitmodules

+4-5
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
path = src/jemalloc
1414
url = https://github.com/rust-lang/jemalloc.git
1515
[submodule "src/rust-installer"]
16-
path = src/rust-installer
16+
path = src/tools/rust-installer
1717
url = https://github.com/rust-lang/rust-installer.git
1818
[submodule "src/liblibc"]
1919
path = src/liblibc
@@ -22,15 +22,14 @@
2222
path = src/doc/nomicon
2323
url = https://github.com/rust-lang-nursery/nomicon.git
2424
[submodule "src/tools/cargo"]
25-
path = cargo
25+
path = src/tools/cargo
2626
url = https://github.com/rust-lang/cargo.git
2727
[submodule "reference"]
2828
path = src/doc/reference
2929
url = https://github.com/rust-lang-nursery/reference.git
3030
[submodule "book"]
3131
path = src/doc/book
3232
url = https://github.com/rust-lang/book.git
33-
[submodule "rls"]
34-
path = rls
33+
[submodule "src/tools/rls"]
34+
path = src/tools/rls
3535
url = https://github.com/rust-lang-nursery/rls.git
36-

.mailmap

+1
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ Margaret Meyerhofer <[email protected]> <mmeyerho@andrew>
139139
Mark Sinclair <[email protected]>
140140
Mark Sinclair <[email protected]> =Mark Sinclair <[email protected]>
141141
Markus Westerlind <[email protected]> Markus <[email protected]>
142+
Martin Hafskjold Thoresen <[email protected]>
142143
Matej Lach <[email protected]> Matej Ľach <[email protected]>
143144
144145
Matthew Auld <[email protected]>

.travis.yml

+16-7
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ matrix:
5454
# version that we're using, 8.2, cannot compile LLVM for OSX 10.7.
5555
- env: >
5656
RUST_CHECK_TARGET=check
57-
RUST_CONFIGURE_ARGS=--build=x86_64-apple-darwin
57+
RUST_CONFIGURE_ARGS="--build=x86_64-apple-darwin --enable-sanitizers"
5858
SRC=.
5959
RUSTC_RETRY_LINKER_ON_SEGFAULT=1
6060
SCCACHE_ERROR_LOG=/tmp/sccache.log
@@ -63,7 +63,7 @@ matrix:
6363
os: osx
6464
osx_image: xcode8.2
6565
install: &osx_install_sccache >
66-
travis_retry curl -o /usr/local/bin/sccache https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-04-04-sccache-x86_64-apple-darwin &&
66+
travis_retry curl -o /usr/local/bin/sccache https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-05-12-sccache-x86_64-apple-darwin &&
6767
chmod +x /usr/local/bin/sccache &&
6868
travis_retry curl -o /usr/local/bin/stamp https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-03-17-stamp-x86_64-apple-darwin &&
6969
chmod +x /usr/local/bin/stamp
@@ -95,18 +95,24 @@ matrix:
9595
MACOSX_DEPLOYMENT_TARGET=10.7
9696
os: osx
9797
osx_image: xcode7
98-
install: *osx_install_sccache
98+
install:
99+
- travis_retry brew update
100+
- travis_retry brew install xz
101+
- *osx_install_sccache
99102
- env: >
100103
RUST_CHECK_TARGET=dist
101-
RUST_CONFIGURE_ARGS="--target=aarch64-apple-ios,armv7-apple-ios,armv7s-apple-ios,i386-apple-ios,x86_64-apple-ios --enable-extended"
104+
RUST_CONFIGURE_ARGS="--target=aarch64-apple-ios,armv7-apple-ios,armv7s-apple-ios,i386-apple-ios,x86_64-apple-ios --enable-extended --enable-sanitizers"
102105
SRC=.
103106
DEPLOY=1
104107
RUSTC_RETRY_LINKER_ON_SEGFAULT=1
105108
SCCACHE_ERROR_LOG=/tmp/sccache.log
106109
MACOSX_DEPLOYMENT_TARGET=10.7
107110
os: osx
108111
osx_image: xcode7
109-
install: *osx_install_sccache
112+
install:
113+
- travis_retry brew update
114+
- travis_retry brew install xz
115+
- *osx_install_sccache
110116
111117
# "alternate" deployments, these are "nightlies" but don't have assertions
112118
# turned on, they're deployed to a different location primarily for projects
@@ -123,7 +129,10 @@ matrix:
123129
MACOSX_DEPLOYMENT_TARGET=10.7
124130
os: osx
125131
osx_image: xcode7
126-
install: *osx_install_sccache
132+
install:
133+
- travis_retry brew update
134+
- travis_retry brew install xz
135+
- *osx_install_sccache
127136
128137
env:
129138
global:
@@ -185,7 +194,7 @@ after_failure:
185194

186195
# Save tagged docker images we created and load them if they're available
187196
# Travis saves caches whether the build failed or not, nuke rustsrc if
188-
# the failure was while updating it (as it may be in an bad state)
197+
# the failure was while updating it (as it may be in a bad state)
189198
# https://github.com/travis-ci/travis-ci/issues/4472
190199
before_cache:
191200
- docker history -q rust-ci |

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ python x.py test src/test/rustdoc
177177
python x.py build src/libcore --stage 0
178178
```
179179

180-
You can explore the build system throught the various `--help` pages for each
180+
You can explore the build system through the various `--help` pages for each
181181
subcommand. For example to learn more about a command you can run:
182182

183183
```

0 commit comments

Comments
 (0)