Skip to content

Commit 8862b5d

Browse files
committed
---
yaml --- r: 38827 b: refs/heads/incoming c: b2462aa h: refs/heads/master i: 38825: fa65d65 38823: 2a80686 v: v3
1 parent 58ff493 commit 8862b5d

File tree

482 files changed

+11193
-7252
lines changed

Some content is hidden

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

482 files changed

+11193
-7252
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: 3d5418789064fdb463e872a4e651af1c628a3650
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: a810c03263670238bccd64cabb12a23a46e3a278
9-
refs/heads/incoming: 15880b3564efdee02b85230ef906b620a8bf4e0c
9+
refs/heads/incoming: b2462aa0e1d5a63a888b32656b3f0e14c818c9ac
1010
refs/heads/dist-snap: 22efa39382d41b084fde1719df7ae8ce5697d8c9
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/incoming/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,3 +80,4 @@ tmp.*.rs
8080
config.stamp
8181
.DS_Store
8282
src/etc/dl
83+
.settings/

branches/incoming/AUTHORS.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ Benjamin Peterson <[email protected]>
2323
Brendan Eich <[email protected]>
2424
Brian Anderson <[email protected]>
2525
Brian J. Burg <[email protected]>
26-
Brian Leibig <[email protected]>
2726
Chris Double <[email protected]>
2827
Chris Peterson <[email protected]>
2928
Damian Gryski <[email protected]>
@@ -42,6 +41,7 @@ Erick Tryzelaar <[email protected]>
4241
Erik Rose <[email protected]>
4342
Evan McClanahan <[email protected]>
4443
Francisco Souza <[email protected]>
44+
4545
Gareth Daniel Smith <[email protected]>
4646
Glenn Willen <[email protected]>
4747
Gonçalo Cabrita <[email protected]>
@@ -73,7 +73,9 @@ Kevin Cantu <[email protected]>
7373
Lennart Kudling
7474
Lindsey Kuper <[email protected]>
7575
Luca Bruno <[email protected]>
76+
Luqman Aden <[email protected]>
7677
Magnus Auvinen <[email protected]>
78+
Mahmut Bulut <[email protected]>
7779
Margaret Meyerhofer <[email protected]>
7880
Marijn Haverbeke <[email protected]>
7981
Matt Brubeck <[email protected]>
@@ -98,6 +100,7 @@ Roland Tanglao <[email protected]>
98100
Roy Frostig <[email protected]>
99101
Ryan Scheel <[email protected]>
100102
Sean Stangl <[email protected]>
103+
Simon BD
101104
startling <[email protected]>
102105
Stefan Plantikow <[email protected]>
103106
Taras Shpot <[email protected]>
@@ -106,6 +109,7 @@ Tim Chevalier <[email protected]>
106109
107110
Tomoki Aonuma <[email protected]>
108111
Tycho Sci <[email protected]>
112+
Viktor Dahl <[email protected]>
109113
Vincent Belliard <[email protected]>
110114
Wade Mealing <[email protected]>
111115
Yasuhiro Fujii <[email protected]>

branches/incoming/Makefile.in

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ LIBSYNTAX_DSYM_GLOB :=$(call CFG_LIB_DSYM_GLOB,syntax)
132132

133133
# version-string calculation
134134
CFG_GIT_DIR := $(CFG_SRC_DIR).git
135-
CFG_RELEASE = 0.4
135+
CFG_RELEASE = 0.5
136136
CFG_VERSION = $(CFG_RELEASE)
137137

138138
ifneq ($(wildcard $(CFG_GIT)),)
@@ -144,8 +144,9 @@ ifneq ($(wildcard $(CFG_GIT_DIR)),)
144144
endif
145145
endif
146146

147-
ifdef CFG_DISABLE_VALGRIND
148-
$(info cfg: disabling valgrind (CFG_DISABLE_VALGRIND))
147+
ifdef CFG_ENABLE_VALGRIND
148+
$(info cfg: enabling valgrind (CFG_ENABLE_VALGRIND))
149+
else
149150
CFG_VALGRIND :=
150151
endif
151152
ifdef CFG_BAD_VALGRIND
@@ -450,9 +451,8 @@ TSREQS := \
450451
FUZZ := $(HBIN2_H_$(CFG_HOST_TRIPLE))/fuzzer$(X)
451452
CARGO := $(HBIN2_H_$(CFG_HOST_TRIPLE))/cargo$(X)
452453
RUSTDOC := $(HBIN2_H_$(CFG_HOST_TRIPLE))/rustdoc$(X)
453-
RUSTI := $(HBIN2_H_$(CFG_HOST_TRIPLE))/rusti$(X)
454454

455-
all: rustc $(GENERATED) docs $(FUZZ) $(CARGO) $(RUSTDOC) $(RUSTI)
455+
all: rustc $(GENERATED) docs $(FUZZ) $(CARGO) $(RUSTDOC)
456456

457457
endif
458458

branches/incoming/configure

Lines changed: 23 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,7 @@ need_cmd cmp
187187
need_cmd mkdir
188188
need_cmd printf
189189
need_cmd cut
190+
need_cmd head
190191
need_cmd grep
191192
need_cmd xargs
192193
need_cmd cp
@@ -257,6 +258,16 @@ case $CFG_CPUTYPE in
257258
err "unknown CPU type: $CFG_CPUTYPE"
258259
esac
259260

261+
# Detect 64 bit linux systems with 32 bit userland and force 32 bit compilation
262+
if [ $CFG_OSTYPE = unknown-linux-gnu -a $CFG_CPUTYPE = x86_64 ]
263+
then
264+
file -L "$SHELL" | grep -q "x86[_-]64"
265+
if [ $? != 0 ]; then
266+
CFG_CPUTYPE=i686
267+
fi
268+
fi
269+
270+
260271
DEFAULT_HOST_TRIPLE="${CFG_CPUTYPE}-${CFG_OSTYPE}"
261272

262273
CFG_SRC_DIR="$(cd $(dirname $0) && pwd)/"
@@ -283,7 +294,7 @@ else
283294
fi
284295

285296
opt sharedstd 1 "build libstd as a shared library"
286-
opt valgrind 1 "run tests with valgrind (memcheck by default)"
297+
opt valgrind 0 "run tests with valgrind (memcheck by default)"
287298
opt helgrind 0 "run tests with helgrind instead of memcheck"
288299
opt docs 1 "build documentation"
289300
opt optimize 1 "build optimized rust code"
@@ -352,11 +363,16 @@ fi
352363

353364
if [ ! -z "$CFG_PANDOC" ]
354365
then
355-
PV=$(pandoc --version | awk '/^pandoc/ {print $2}')
356-
if [ "$PV" \< "1.8" ]
366+
PANDOC_VER_LINE=$(pandoc --version | grep '^pandoc ')
367+
PANDOC_VER=${PANDOC_VER_LINE#pandoc }
368+
PV_MAJOR_MINOR=${PANDOC_VER%.[0-9]*}
369+
PV_MAJOR=${PV_MAJOR_MINOR%%[.][0-9]*}
370+
PV_MINOR=${PV_MAJOR_MINOR#[0-9]*[.]}
371+
PV_MINOR=${PV_MINOR%%[.][0-9]*}
372+
if [ "$PV_MAJOR" -lt "1" ] || [ "$PV_MINOR" -lt "8" ]
357373
then
358-
step_msg "pandoc $PV is too old. disabling"
359-
BAD_PANDOC=1
374+
step_msg "pandoc $PV_MAJOR.$PV_MINOR is too old. disabling"
375+
BAD_PANDOC=1
360376
fi
361377
fi
362378

@@ -513,7 +529,7 @@ for t in $CFG_TARGET_TRIPLES
513529
do
514530
make_dir rt/$t
515531
for i in \
516-
isaac linenoise bigint sync test arch/i386 arch/x86_64 \
532+
isaac bigint sync test arch/i386 arch/x86_64 \
517533
libuv libuv/src/ares libuv/src/eio libuv/src/ev
518534
do
519535
make_dir rt/$t/$i
@@ -579,7 +595,7 @@ then
579595
need_ok "git failed"
580596

581597
msg "git: submodule foreach sync"
582-
"${CFG_GIT}" submodule --quiet foreach --recursive git submodule sync
598+
"${CFG_GIT}" submodule --quiet foreach --recursive 'if test -e .gitmodules; then git submodule sync; fi'
583599
need_ok "git failed"
584600

585601
msg "git: submodule foreach update"

0 commit comments

Comments
 (0)