Skip to content

Commit df4bab0

Browse files
committed
---
yaml --- r: 151118 b: refs/heads/try2 c: 0f52122 h: refs/heads/master v: v3
1 parent bd9bcc3 commit df4bab0

File tree

33 files changed

+231
-11289
lines changed

33 files changed

+231
-11289
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: a28a701d648d88ed63f575fa1efed47f5cbb81ca
8+
refs/heads/try2: 0f52122fa23a3b0e853bc8b4ebe29d6102201274
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/mk/crates.mk

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151

5252
TARGET_CRATES := libc std green rustuv native flate arena glob term semver \
5353
uuid serialize sync getopts collections num test time rand \
54-
workcache url log regex
55-
HOST_CRATES := syntax rustc rustdoc fourcc hexfloat regex_macros
54+
workcache url log
55+
HOST_CRATES := syntax rustc rustdoc fourcc hexfloat
5656
CRATES := $(TARGET_CRATES) $(HOST_CRATES)
5757
TOOLS := compiletest rustdoc rustc
5858

@@ -84,8 +84,6 @@ DEPS_rand := std
8484
DEPS_url := std collections
8585
DEPS_workcache := std serialize collections log
8686
DEPS_log := std sync
87-
DEPS_regex := std collections
88-
DEPS_regex_macros = syntax std regex
8987

9088
TOOL_DEPS_compiletest := test green rustuv getopts
9189
TOOL_DEPS_rustdoc := rustdoc native

branches/try2/mk/main.mk

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,8 @@ HSREQ$(1)_H_$(3) = $$(HBIN$(1)_H_$(3))/rustc$$(X_$(3))
311311
else
312312
HSREQ$(1)_H_$(3) = \
313313
$$(HBIN$(1)_H_$(3))/rustc$$(X_$(3)) \
314+
$$(HLIB$(1)_H_$(3))/stamp.rustc \
315+
$$(foreach dep,$$(RUST_DEPS_rustc),$$(HLIB$(1)_H_$(3))/stamp.$$(dep)) \
314316
$$(MKFILE_DEPS)
315317
endif
316318

@@ -332,7 +334,8 @@ SREQ$(1)_T_$(2)_H_$(3) = \
332334
CSREQ$(1)_T_$(2)_H_$(3) = \
333335
$$(TSREQ$(1)_T_$(2)_H_$(3)) \
334336
$$(HBIN$(1)_H_$(3))/rustdoc$$(X_$(3)) \
335-
$$(foreach dep,$$(CRATES),$$(TLIB$(1)_T_$(2)_H_$(3))/stamp.$$(dep))
337+
$$(foreach dep,$$(CRATES),$$(TLIB$(1)_T_$(2)_H_$(3))/stamp.$$(dep)) \
338+
$$(foreach dep,$$(HOST_CRATES),$$(HLIB$(1)_H_$(3))/stamp.$$(dep))
336339

337340
ifeq ($(1),0)
338341
# Don't run the stage0 compiler under valgrind - that ship has sailed

branches/try2/src/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ Source layout:
1919
| `libfourcc/` | Data format identifier library |
2020
| `libgetopts/` | Get command-line-options library |
2121
| `libglob/` | Unix glob patterns library |
22-
| `libregex/` | Regular expressions |
2322
| `libsemver/` | Rust's semantic versioning library |
2423
| `libserialize/` | Encode-Decode types library |
2524
| `libsync/` | Concurrency mechanisms and primitives |

branches/try2/src/doc/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ li {list-style-type: none; }
4141
* [The `native` 1:1 threading runtime](native/index.html)
4242
* [The `num` arbitrary precision numerics library](num/index.html)
4343
* [The `rand` library for random numbers and distributions](rand/index.html)
44-
* [The `regex` library for regular expressions](regex/index.html)
4544
* [The `rustc` compiler](rustc/index.html)
4645
* [The `rustuv` M:N I/O library](rustuv/index.html)
4746
* [The `semver` version collation library](semver/index.html)

branches/try2/src/doc/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ a `Sender` and `Receiver` (commonly abbreviated `tx` and `rx`).
217217
The `spawn` function spins up a new task,
218218
given a *heap allocated closure* to run.
219219
As you can see in the code,
220-
we call `tx.send()` from the original task,
220+
we call `chan.send()` from the original task,
221221
passing in our boxed array,
222222
and we call `rx.recv()` (short for 'receive') inside of the new task:
223223
values given to the `Sender` via the `send` method come out the other end via the `recv` method on the `Receiver`.

branches/try2/src/etc/regex-match-tests.py

Lines changed: 0 additions & 109 deletions
This file was deleted.

branches/try2/src/etc/regex-unicode-tables.py

Lines changed: 0 additions & 183 deletions
This file was deleted.

0 commit comments

Comments
 (0)