Skip to content

Commit c4a891f

Browse files
committed
---
yaml --- r: 40298 b: refs/heads/dist-snap c: 799eb10 h: refs/heads/master v: v3
1 parent 32d7e29 commit c4a891f

File tree

543 files changed

+8852
-12422
lines changed

Some content is hidden

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

543 files changed

+8852
-12422
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: a810c03263670238bccd64cabb12a23a46e3a278
99
refs/heads/incoming: e90142e536c150df0d9b4b2f11352152177509b5
10-
refs/heads/dist-snap: 45a908cad04b10fea8446fbd2589a499f7fa7617
10+
refs/heads/dist-snap: 799eb105b92a8ef2238b217291ea6169d70acec4
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1313
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

branches/dist-snap/.gitignore

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

branches/dist-snap/AUTHORS.txt

Lines changed: 1 addition & 5 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]>
@@ -100,7 +98,6 @@ Roland Tanglao <[email protected]>
10098
Roy Frostig <[email protected]>
10199
Ryan Scheel <[email protected]>
102100
Sean Stangl <[email protected]>
103-
Simon BD
104101
startling <[email protected]>
105102
Stefan Plantikow <[email protected]>
106103
Taras Shpot <[email protected]>
@@ -109,7 +106,6 @@ Tim Chevalier <[email protected]>
109106
110107
Tomoki Aonuma <[email protected]>
111108
Tycho Sci <[email protected]>
112-
Viktor Dahl <[email protected]>
113109
Vincent Belliard <[email protected]>
114110
Wade Mealing <[email protected]>
115111
Yasuhiro Fujii <[email protected]>

branches/dist-snap/Makefile.in

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -120,28 +120,19 @@ CFG_CORELIB :=$(call CFG_LIB_NAME,core)
120120
CFG_STDLIB :=$(call CFG_LIB_NAME,std)
121121
CFG_LIBRUSTC :=$(call CFG_LIB_NAME,rustc)
122122
CFG_LIBSYNTAX :=$(call CFG_LIB_NAME,syntax)
123-
CFG_LIBFUZZER :=$(call CFG_LIB_NAME,fuzzer)
124-
CFG_LIBCARGO :=$(call CFG_LIB_NAME,cargo)
125-
CFG_LIBRUSTDOC :=$(call CFG_LIB_NAME,rustdoc)
126123

127124
STDLIB_GLOB :=$(call CFG_LIB_GLOB,std)
128125
CORELIB_GLOB :=$(call CFG_LIB_GLOB,core)
129126
LIBRUSTC_GLOB :=$(call CFG_LIB_GLOB,rustc)
130127
LIBSYNTAX_GLOB :=$(call CFG_LIB_GLOB,syntax)
131-
LIBFUZZER_GLOB :=$(call CFG_LIB_GLOB,fuzzer)
132-
LIBCARGO_GLOB :=$(call CFG_LIB_GLOB,cargo)
133-
LIBRUSTDOC_GLOB :=$(call CFG_LIB_GLOB,rustdoc)
134128
STDLIB_DSYM_GLOB :=$(call CFG_LIB_DSYM_GLOB,std)
135129
CORELIB_DSYM_GLOB :=$(call CFG_LIB_DSYM_GLOB,core)
136130
LIBRUSTC_DSYM_GLOB :=$(call CFG_LIB_DSYM_GLOB,rustc)
137131
LIBSYNTAX_DSYM_GLOB :=$(call CFG_LIB_DSYM_GLOB,syntax)
138-
LIBFUZZER_DSYM_GLOB :=$(call CFG_LIB_DSYM_GLOB,fuzzer)
139-
LIBCARGO_DSYM_GLOB :=$(call CFG_LIB_DSYM_GLOB,cargo)
140-
LIBRUSTDOC_DSYM_GLOB :=$(call CFG_LIB_DSYM_GLOB,rustdoc)
141132

142133
# version-string calculation
143134
CFG_GIT_DIR := $(CFG_SRC_DIR).git
144-
CFG_RELEASE = 0.5
135+
CFG_RELEASE = 0.4
145136
CFG_VERSION = $(CFG_RELEASE)
146137

147138
ifneq ($(wildcard $(CFG_GIT)),)
@@ -153,9 +144,8 @@ ifneq ($(wildcard $(CFG_GIT_DIR)),)
153144
endif
154145
endif
155146

156-
ifdef CFG_ENABLE_VALGRIND
157-
$(info cfg: enabling valgrind (CFG_ENABLE_VALGRIND))
158-
else
147+
ifdef CFG_DISABLE_VALGRIND
148+
$(info cfg: disabling valgrind (CFG_DISABLE_VALGRIND))
159149
CFG_VALGRIND :=
160150
endif
161151
ifdef CFG_BAD_VALGRIND
@@ -460,8 +450,9 @@ TSREQS := \
460450
FUZZ := $(HBIN2_H_$(CFG_HOST_TRIPLE))/fuzzer$(X)
461451
CARGO := $(HBIN2_H_$(CFG_HOST_TRIPLE))/cargo$(X)
462452
RUSTDOC := $(HBIN2_H_$(CFG_HOST_TRIPLE))/rustdoc$(X)
453+
RUSTI := $(HBIN2_H_$(CFG_HOST_TRIPLE))/rusti$(X)
463454

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

466457
endif
467458

branches/dist-snap/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)