Skip to content

Commit 55d75c4

Browse files
authored
Merge branch 'master' into maccoda/env_docs
2 parents b69b641 + 5dfcd85 commit 55d75c4

File tree

241 files changed

+5064
-2458
lines changed

Some content is hidden

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

241 files changed

+5064
-2458
lines changed

.gitmodules

+3-3
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
@@ -23,7 +23,7 @@
2323
url = https://github.com/rust-lang-nursery/nomicon.git
2424
[submodule "src/tools/cargo"]
2525
path = src/tools/cargo
26-
url = https://github.com/rust-lang/cargo
26+
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
@@ -32,4 +32,4 @@
3232
url = https://github.com/rust-lang/book.git
3333
[submodule "src/tools/rls"]
3434
path = src/tools/rls
35-
url = https://github.com/rust-lang-nursery/rls
35+
url = https://github.com/rust-lang-nursery/rls.git

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
```

appveyor.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@ install:
141141
- set PATH="C:\Program Files (x86)\Inno Setup 5";%PATH%
142142

143143
# Help debug some handle issues on AppVeyor
144-
- ps: Invoke-WebRequest -Uri https://download.sysinternals.com/files/Handle.zip -OutFile handle.zip
144+
- appveyor-retry appveyor DownloadFile https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-05-15-Handle.zip
145145
- mkdir handle
146-
- ps: Expand-Archive handle.zip -dest handle
146+
- 7z x -ohandle 2017-05-15-Handle.zip
147147
- set PATH=%PATH%;%CD%\handle
148148
- handle.exe -accepteula -help
149149

configure

+3
Original file line numberDiff line numberDiff line change
@@ -519,6 +519,7 @@ valopt_nosave host "${CFG_BUILD}" "GNUs ./configure syntax LLVM host triples"
519519
valopt_nosave target "${CFG_HOST}" "GNUs ./configure syntax LLVM target triples"
520520
valopt_nosave mandir "${CFG_PREFIX}/share/man" "install man pages in PATH"
521521
valopt_nosave docdir "${CFG_PREFIX}/share/doc/rust" "install documentation in PATH"
522+
valopt_nosave bindir "${CFG_PREFIX}/bin" "install binaries"
522523

523524
# On Windows this determines root of the subtree for target libraries.
524525
# Host runtime libs always go to 'bin'.
@@ -710,6 +711,7 @@ envopt LDFLAGS
710711
CFG_PREFIX=${CFG_PREFIX%/}
711712
CFG_MANDIR=${CFG_MANDIR%/}
712713
CFG_DOCDIR=${CFG_DOCDIR%/}
714+
CFG_BINDIR=${CFG_BINDIR%/}
713715
CFG_HOST="$(echo $CFG_HOST | tr ',' ' ')"
714716
CFG_TARGET="$(echo $CFG_TARGET | tr ',' ' ')"
715717

@@ -750,6 +752,7 @@ putvar CFG_X86_64_LINUX_ANDROID_NDK
750752
putvar CFG_NACL_CROSS_PATH
751753
putvar CFG_MANDIR
752754
putvar CFG_DOCDIR
755+
putvar CFG_BINDIR
753756
putvar CFG_USING_LIBCPP
754757

755758
msg

0 commit comments

Comments
 (0)