Skip to content

Commit 6d3c965

Browse files
committed
---
yaml --- r: 38812 b: refs/heads/incoming c: ea99655 h: refs/heads/master v: v3
1 parent e5d6a91 commit 6d3c965

File tree

470 files changed

+6973
-10843
lines changed

Some content is hidden

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

470 files changed

+6973
-10843
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: dd76050e511ba367145b7debaac44687b9cdf9f1
9+
refs/heads/incoming: ea996556b93f3f322145fedb5a46fe97e8d0379a
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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ version.texi
5555
config.mk
5656
/rt/
5757
/rustllvm/
58+
/linenoise
5859
/test/
5960
/build/
6061
/inst/
@@ -80,4 +81,3 @@ tmp.*.rs
8081
config.stamp
8182
.DS_Store
8283
src/etc/dl
83-
.settings/

branches/incoming/AUTHORS.txt

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ 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]>
2627
Chris Double <[email protected]>
2728
Chris Peterson <[email protected]>
2829
Damian Gryski <[email protected]>
@@ -41,7 +42,6 @@ Erick Tryzelaar <[email protected]>
4142
Erik Rose <[email protected]>
4243
Evan McClanahan <[email protected]>
4344
Francisco Souza <[email protected]>
44-
4545
Gareth Daniel Smith <[email protected]>
4646
Glenn Willen <[email protected]>
4747
Gonçalo Cabrita <[email protected]>
@@ -73,9 +73,7 @@ Kevin Cantu <[email protected]>
7373
Lennart Kudling
7474
Lindsey Kuper <[email protected]>
7575
Luca Bruno <[email protected]>
76-
Luqman Aden <[email protected]>
7776
Magnus Auvinen <[email protected]>
78-
Mahmut Bulut <[email protected]>
7977
Margaret Meyerhofer <[email protected]>
8078
Marijn Haverbeke <[email protected]>
8179
Matt Brubeck <[email protected]>
@@ -108,7 +106,6 @@ Tim Chevalier <[email protected]>
108106
109107
Tomoki Aonuma <[email protected]>
110108
Tycho Sci <[email protected]>
111-
Viktor Dahl <[email protected]>
112109
Vincent Belliard <[email protected]>
113110
Wade Mealing <[email protected]>
114111
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.5
135+
CFG_RELEASE = 0.4
136136
CFG_VERSION = $(CFG_RELEASE)
137137

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

147-
ifdef CFG_ENABLE_VALGRIND
148-
$(info cfg: enabling valgrind (CFG_ENABLE_VALGRIND))
149-
else
147+
ifdef CFG_DISABLE_VALGRIND
148+
$(info cfg: disabling valgrind (CFG_DISABLE_VALGRIND))
150149
CFG_VALGRIND :=
151150
endif
152151
ifdef CFG_BAD_VALGRIND
@@ -451,8 +450,9 @@ TSREQS := \
451450
FUZZ := $(HBIN2_H_$(CFG_HOST_TRIPLE))/fuzzer$(X)
452451
CARGO := $(HBIN2_H_$(CFG_HOST_TRIPLE))/cargo$(X)
453452
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)
455+
all: rustc $(GENERATED) docs $(FUZZ) $(CARGO) $(RUSTDOC) $(RUSTI)
456456

457457
endif
458458

branches/incoming/configure

Lines changed: 7 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,6 @@ need_cmd cmp
187187
need_cmd mkdir
188188
need_cmd printf
189189
need_cmd cut
190-
need_cmd head
191190
need_cmd grep
192191
need_cmd xargs
193192
need_cmd cp
@@ -258,16 +257,6 @@ case $CFG_CPUTYPE in
258257
err "unknown CPU type: $CFG_CPUTYPE"
259258
esac
260259

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-
271260
DEFAULT_HOST_TRIPLE="${CFG_CPUTYPE}-${CFG_OSTYPE}"
272261

273262
CFG_SRC_DIR="$(cd $(dirname $0) && pwd)/"
@@ -294,7 +283,7 @@ else
294283
fi
295284

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

364353
if [ ! -z "$CFG_PANDOC" ]
365354
then
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" ]
355+
PV=$(pandoc --version | awk '/^pandoc/ {print $2}')
356+
if [ "$PV" \< "1.8" ]
373357
then
374-
step_msg "pandoc $PV_MAJOR.$PV_MINOR is too old. disabling"
375-
BAD_PANDOC=1
358+
step_msg "pandoc $PV is too old. disabling"
359+
BAD_PANDOC=1
376360
fi
377361
fi
378362

@@ -529,7 +513,7 @@ for t in $CFG_TARGET_TRIPLES
529513
do
530514
make_dir rt/$t
531515
for i in \
532-
isaac bigint sync test arch/i386 arch/x86_64 \
516+
isaac linenoise bigint sync test arch/i386 arch/x86_64 \
533517
libuv libuv/src/ares libuv/src/eio libuv/src/ev
534518
do
535519
make_dir rt/$t/$i
@@ -595,7 +579,7 @@ then
595579
need_ok "git failed"
596580

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

601585
msg "git: submodule foreach update"

0 commit comments

Comments
 (0)