Skip to content

Commit f8f2bf6

Browse files
committed
---
yaml --- r: 196327 b: refs/heads/tmp c: 3527507 h: refs/heads/master i: 196325: 8a17312 196323: 780c69e 196319: fd00f04 v: v3
1 parent e49974d commit f8f2bf6

File tree

3,320 files changed

+41437
-55545
lines changed

Some content is hidden

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

3,320 files changed

+41437
-55545
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
3232
refs/heads/beta: 9854143cba679834bc4ef932858cd5303f015a0e
3333
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
3434
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
35-
refs/heads/tmp: f92e7abefd0231f80d16062e5ff6aaf8cc3bc861
35+
refs/heads/tmp: 35275076f52d53c3dcd9dee85d92a2059a663225
3636
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
3737
refs/tags/homu-tmp: 53a183f0274316596bf9405944d4f0468d8c93e4
3838
refs/heads/gate: 97c84447b65164731087ea82685580cc81424412

branches/tmp/AUTHORS.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ Peter Schuller <[email protected]>
606606
Peter Williams <[email protected]>
607607
Peter Zotov <[email protected]>
608608
Petter Remen <[email protected]>
609-
Phil Dawes <[email protected]>
609+
Phil Dawes <[email protected]>
610610
Phil Ruffwind <[email protected]>
611611
Philip Munksgaard <[email protected]>
612612
Philipp Brüschweiler <[email protected]>

branches/tmp/Makefile.in

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,12 @@
9797
# make check-stage1-rpass TESTNAME=my-shiny-new-test
9898
#
9999
# // Having trouble figuring out which test is failing? Turn off parallel tests
100-
# make check-stage1-std RUST_TEST_THREADS=1
100+
# make check-stage1-std RUST_TEST_TASKS=1
101+
#
102+
# This is hardly all there is to know of The Rust Build System's
103+
# mysteries. The tale continues on the wiki[1].
104+
#
105+
# [1]: https://github.com/rust-lang/rust/wiki/Note-testsuite
101106
#
102107
# If you really feel like getting your hands dirty, then:
103108
#

branches/tmp/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Read ["Installing Rust"] from [The Book].
6464
# Choose one based on platform:
6565
$ pacman -S mingw-w64-i686-toolchain
6666
$ pacman -S mingw-w64-x86_64-toolchain
67-
67+
6868
$ pacman -S base-devel
6969
```
7070
@@ -115,7 +115,7 @@ The Rust community congregates in a few places:
115115

116116
## Contributing
117117

118-
To contribute to Rust, please see [CONTRIBUTING](CONTRIBUTING.md).
118+
To contribute to Rust, please see [CONTRIBUTING.md](CONTRIBUTING.md).
119119

120120
Rust has an [IRC] culture and most real-time collaboration happens in a
121121
variety of channels on Mozilla's IRC network, irc.mozilla.org. The
@@ -131,4 +131,4 @@ Rust is primarily distributed under the terms of both the MIT license
131131
and the Apache License (Version 2.0), with portions covered by various
132132
BSD-like licenses.
133133
134-
See [LICENSE-APACHE](LICENSE-APACHE), [LICENSE-MIT](LICENSE-MIT), and [COPYRIGHT](COPYRIGHT) for details.
134+
See LICENSE-APACHE, LICENSE-MIT, and COPYRIGHT for details.

branches/tmp/configure

Lines changed: 10 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ case $CFG_OSTYPE in
404404
CFG_OSTYPE=pc-windows-gnu
405405
;;
406406

407-
# Thad's Cygwin identifiers below
407+
# Thad's Cygwin identifers below
408408

409409
# Vista 32 bit
410410
CYGWIN_NT-6.0)
@@ -461,10 +461,7 @@ case $CFG_CPUTYPE in
461461
CFG_CPUTYPE=aarch64
462462
;;
463463

464-
# At some point, when ppc64[le] support happens, this will need to do
465-
# something clever. For now it's safe to assume that we're only ever
466-
# interested in building 32 bit.
467-
powerpc | ppc | ppc64)
464+
powerpc)
468465
CFG_CPUTYPE=powerpc
469466
;;
470467

@@ -479,19 +476,10 @@ esac
479476
# Detect 64 bit linux systems with 32 bit userland and force 32 bit compilation
480477
if [ $CFG_OSTYPE = unknown-linux-gnu -a $CFG_CPUTYPE = x86_64 ]
481478
then
482-
# $SHELL does not exist in standard 'sh', so probably only exists
483-
# if configure is running in an interactive bash shell. /usr/bin/env
484-
# exists *everywhere*.
485-
BIN_TO_PROBE="$SHELL"
486-
if [ -z "$BIN_TO_PROBE" -a -e "/usr/bin/env" ]; then
487-
BIN_TO_PROBE="/usr/bin/env"
479+
file -L "$SHELL" | grep -q "x86[_-]64"
480+
if [ $? != 0 ]; then
481+
CFG_CPUTYPE=i686
488482
fi
489-
if [ -n "$BIN_TO_PROBE" ]; then
490-
file -L "$BIN_TO_PROBE" | grep -q "x86[_-]64"
491-
if [ $? != 0 ]; then
492-
CFG_CPUTYPE=i686
493-
fi
494-
fi
495483
fi
496484

497485

@@ -526,8 +514,7 @@ VAL_OPTIONS=""
526514
opt valgrind 0 "run tests with valgrind (memcheck by default)"
527515
opt helgrind 0 "run tests with helgrind instead of memcheck"
528516
opt valgrind-rpass 1 "run rpass-valgrind tests with valgrind"
529-
opt docs 1 "build standard library documentation"
530-
opt compiler-docs 0 "build compiler documentation"
517+
opt docs 1 "build documentation"
531518
opt optimize 1 "build optimized rust code"
532519
opt optimize-cxx 1 "build optimized C++ code"
533520
opt optimize-llvm 1 "build optimized LLVM"
@@ -714,8 +701,8 @@ probe CFG_ADB adb
714701

715702
if [ ! -z "$CFG_PANDOC" ]
716703
then
717-
# Extract "MAJOR MINOR" from Pandoc's version number
718704
PV_MAJOR_MINOR=$(pandoc --version | grep '^pandoc' |
705+
# Extract "MAJOR MINOR" from Pandoc's version number
719706
sed -E 's/pandoc(.exe)? ([0-9]+)\.([0-9]+).*/\2 \3/')
720707

721708
MIN_PV_MAJOR="1"
@@ -773,9 +760,8 @@ fi
773760
# Force bitrig to build with clang; gcc doesn't like us there
774761
if [ $CFG_OSTYPE = unknown-bitrig ]
775762
then
776-
step_msg "on Bitrig, forcing use of clang, disabling jemalloc"
763+
step_msg "on Bitrig, forcing use of clang"
777764
CFG_ENABLE_CLANG=1
778-
CFG_ENABLE_JEMALLOC=0
779765
fi
780766

781767
if [ -z "$CFG_ENABLE_CLANG" -a -z "$CFG_GCC" ]
@@ -836,11 +822,11 @@ then
836822
LLVM_VERSION=$($LLVM_CONFIG --version)
837823

838824
case $LLVM_VERSION in
839-
(3.[5-6]*)
825+
(3.[2-6]*)
840826
msg "found ok version of LLVM: $LLVM_VERSION"
841827
;;
842828
(*)
843-
err "bad LLVM version: $LLVM_VERSION, need >=3.5"
829+
err "bad LLVM version: $LLVM_VERSION, need >=3.0svn"
844830
;;
845831
esac
846832
fi

0 commit comments

Comments
 (0)