Skip to content

Commit 898c33f

Browse files
committed
---
yaml --- r: 195854 b: refs/heads/auto c: 3527507 h: refs/heads/master v: v3
1 parent 4fde109 commit 898c33f

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
@@ -10,7 +10,7 @@ refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1010
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1111
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1212
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
13-
refs/heads/auto: f92e7abefd0231f80d16062e5ff6aaf8cc3bc861
13+
refs/heads/auto: 35275076f52d53c3dcd9dee85d92a2059a663225
1414
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
1515
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
1616
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336

branches/auto/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/auto/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/auto/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/auto/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)