Skip to content

Commit 82ceaf6

Browse files
committed
---
yaml --- r: 190011 b: refs/heads/master c: 7b7b938 h: refs/heads/master i: 190009: f47301f 190007: 897021c v: v3
1 parent dfc2cc9 commit 82ceaf6

File tree

1,196 files changed

+17172
-25285
lines changed

Some content is hidden

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

1,196 files changed

+17172
-25285
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 3400c9ed9f1200a59f6452db5c71af2182db29a5
2+
refs/heads/master: 7b7b938be1123631fed4e021fd3ef9562cf81b0c
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 270a677d4d698916f5ad103f0afc3c070b8dbeb4
55
refs/heads/try: 1c28ab65017d74fc13d003f7c7a73d1a48e5406f

trunk/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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.

trunk/configure

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -430,10 +430,6 @@ case $CFG_OSTYPE in
430430
CFG_CPUTYPE=x86_64
431431
;;
432432

433-
# Win 8 # uname -s on 64-bit cygwin does not contain WOW64, so simply use uname -m to detect arch (works in my install)
434-
CYGWIN_NT-6.3)
435-
CFG_OSTYPE=pc-windows-gnu
436-
;;
437433
# We do not detect other OS such as XP/2003 using 64 bit using uname.
438434
# If we want to in the future, we will need to use Cygwin - Chuck's csih helper in /usr/lib/csih/winProductName.exe or alternative.
439435
*)
@@ -701,17 +697,15 @@ probe CFG_ADB adb
701697

702698
if [ ! -z "$CFG_PANDOC" ]
703699
then
704-
# Extract "MAJOR MINOR" from Pandoc's version number
705-
PV_MAJOR_MINOR=$(pandoc --version | grep '^pandoc' |
706-
sed -E 's/pandoc(.exe)? ([0-9]+)\.([0-9]+).*/\2 \3/')
700+
PV_MAJOR_MINOR=$(pandoc --version | grep '^pandoc\(.exe\)\? ' |
701+
# extract the first 2 version fields, ignore everything else
702+
sed 's/pandoc\(.exe\)\? \([0-9]*\)\.\([0-9]*\).*/\2 \3/')
707703

708704
MIN_PV_MAJOR="1"
709705
MIN_PV_MINOR="9"
710-
711706
# these patterns are shell globs, *not* regexps
712707
PV_MAJOR=${PV_MAJOR_MINOR% *}
713708
PV_MINOR=${PV_MAJOR_MINOR#* }
714-
715709
if [ "$PV_MAJOR" -lt "$MIN_PV_MAJOR" ] || [ "$PV_MINOR" -lt "$MIN_PV_MINOR" ]
716710
then
717711
step_msg "pandoc $PV_MAJOR.$PV_MINOR is too old. Need at least $MIN_PV_MAJOR.$MIN_PV_MINOR. Disabling"
@@ -760,9 +754,8 @@ fi
760754
# Force bitrig to build with clang; gcc doesn't like us there
761755
if [ $CFG_OSTYPE = unknown-bitrig ]
762756
then
763-
step_msg "on Bitrig, forcing use of clang, disabling jemalloc"
757+
step_msg "on Bitrig, forcing use of clang"
764758
CFG_ENABLE_CLANG=1
765-
CFG_ENABLE_JEMALLOC=0
766759
fi
767760

768761
if [ -z "$CFG_ENABLE_CLANG" -a -z "$CFG_GCC" ]
@@ -882,7 +875,7 @@ then
882875
| cut -d ' ' -f 2)
883876

884877
case $CFG_CLANG_VERSION in
885-
(3.2* | 3.3* | 3.4* | 3.5* | 3.6*)
878+
(3.0svn | 3.0 | 3.1* | 3.2* | 3.3* | 3.4* | 3.5* | 3.6*)
886879
step_msg "found ok version of CLANG: $CFG_CLANG_VERSION"
887880
if [ -z "$CC" ]
888881
then

0 commit comments

Comments
 (0)