Skip to content

Commit 4c632c1

Browse files
committed
---
yaml --- r: 94200 b: refs/heads/try c: b8b16ae h: refs/heads/master v: v3
1 parent a157018 commit 4c632c1

File tree

113 files changed

+1264
-606
lines changed

Some content is hidden

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

113 files changed

+1264
-606
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 0da105a8b7b6b1e0568e8ff20f6ff4b13cc7ecc2
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: a6d3e57dca68fde4effdda3e4ae2887aa535fcd6
5-
refs/heads/try: fd7a513bef7fe3c6f5128cc53135facca37f23e5
5+
refs/heads/try: b8b16ae0996074861693f0f76d5d937fafe6a37e
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/mk/tests.mk

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,8 @@ $(3)/stage$(1)/test/rustdoctest-$(2)$$(X_$(2)): \
394394
$$(RUSTDOC_LIB) $$(RUSTDOC_INPUTS) \
395395
$$(SREQ$(1)_T_$(2)_H_$(3)) \
396396
$$(TLIB$(1)_T_$(2)_H_$(3))/$$(CFG_LIBSYNTAX_$(2)) \
397-
$$(TLIB$(1)_T_$(2)_H_$(3))/$$(CFG_LIBRUSTC_$(2))
397+
$$(TLIB$(1)_T_$(2)_H_$(3))/$$(CFG_LIBRUSTC_$(2)) \
398+
$$(SUNDOWN_LIB_$(2))
398399
@$$(call E, compile_and_link: $$@)
399400
$$(STAGE$(1)_T_$(2)_H_$(3)) -o $$@ $$< --test \
400401
-L $$(SUNDOWN_DIR_$(2))

branches/try/src/driver/driver.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
// except according to those terms.
1010

1111
#[cfg(rustpkg)]
12-
extern mod this(name = "rustpkg");
12+
extern mod this = "rustpkg";
1313

1414
#[cfg(rustdoc)]
15-
extern mod this(name = "rustdoc");
15+
extern mod this = "rustdoc";
1616

1717
#[cfg(rustc)]
18-
extern mod this(name = "rustc");
18+
extern mod this = "rustc";
1919

2020
#[cfg(rustdoc_ng)]
21-
extern mod this(name = "rustdoc_ng");
21+
extern mod this = "rustdoc_ng";
2222

2323
fn main() { this::main() }

branches/try/src/etc/combine-tests.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ def scrub(b):
4242
c = open("tmp/run_pass_stage2.rc", "w")
4343
i = 0
4444
c.write("// AUTO-GENERATED FILE: DO NOT EDIT\n")
45+
c.write("#[pkgid=\"run_pass_stage2#0.1\"];\n")
4546
c.write("#[link(name=\"run_pass_stage2\", vers=\"0.1\")];\n")
4647
c.write("#[feature(globs, macro_rules, struct_variant, managed_boxes)];\n")
4748
c.write("#[allow(attribute_usage)];\n")

branches/try/src/libextra/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ Rust extras are part of the standard Rust distribution.
2020
2121
*/
2222

23+
#[pkgid="extra#0.9-pre"];
24+
// NOTE: remove after the next snapshot
2325
#[link(name = "extra",
2426
package_id = "extra",
2527
vers = "0.9-pre",

0 commit comments

Comments
 (0)