Skip to content

Commit 72ed1d7

Browse files
committed
---
yaml --- r: 97639 b: refs/heads/snap-stage3 c: 110e5dd h: refs/heads/master i: 97637: 85bf0af 97635: 3043f68 97631: 53b16b8 v: v3
1 parent c8c5981 commit 72ed1d7

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 0da105a8b7b6b1e0568e8ff20f6ff4b13cc7ecc2
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: c3c94ad8cbc7bbff01771f1501a5a31504b1618c
4+
refs/heads/snap-stage3: 110e5dd1ac5fc1ac83f803560f0d2e65b77d7a49
55
refs/heads/try: c274a6888410ce3e357e014568b43310ed787d36
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ src/.DS_Store
8080
/doc/rustc
8181
/doc/syntax
8282
/doc/rustuv
83+
/doc/rustpkg
8384
/nd/
8485
/llvm/
8586
version.md

branches/snap-stage3/doc/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
[The M:N runtime library, `libgreen`](green/index.html)
3030
[The 1:1 runtime library, `libnative`](native/index.html)
3131

32+
[The Rust packaging library, `librustpkg`](rustpkg/index.html)
33+
3234
[The Rust parser, `libsyntax`](syntax/index.html)
3335
[The Rust compiler, `librustc`](rustc/index.html)
3436

branches/snap-stage3/mk/docs.mk

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,8 @@ RUSTDOC = $(HBIN2_H_$(CFG_BUILD))/rustdoc$(X_$(CFG_BUILD))
289289
#
290290
# Passes --cfg stage2 to rustdoc because it uses the stage2 librustc.
291291
define libdoc
292-
doc/$(1)/index.html: $$(RUSTDOC) $$(TLIB2_T_$(3)_H_$(3))/$(CFG_STDLIB_$(3))
292+
doc/$(1)/index.html: $$(RUSTDOC) $$(TLIB2_T_$(3)_H_$(3))/$(CFG_STDLIB_$(3)) \
293+
$(foreach name,$(4),$$(TLIB2_T_$(3)_H_$(3))/$$(CFG_$(name)_$(3)))
293294
@$$(call E, rustdoc: $$@)
294295
$(Q)$(RUSTDOC) --cfg stage2 $(2)
295296

@@ -309,6 +310,7 @@ $(eval $(call libdoc,extra,$(EXTRALIB_CRATE),$(CFG_BUILD)))
309310
$(eval $(call libdoc,native,$(LIBNATIVE_CRATE),$(CFG_BUILD)))
310311
$(eval $(call libdoc,green,$(LIBGREEN_CRATE),$(CFG_BUILD)))
311312
$(eval $(call libdoc,rustuv,$(LIBRUSTUV_CRATE),$(CFG_BUILD)))
313+
$(eval $(call libdoc,rustpkg,$(RUSTPKG_LIB),$(CFG_BUILD),EXTRALIB LIBRUSTC))
312314

313315
$(eval $(call compiledoc,rustc,$(COMPILER_CRATE),$(CFG_BUILD)))
314316
$(eval $(call compiledoc,syntax,$(LIBSYNTAX_CRATE),$(CFG_BUILD)))

0 commit comments

Comments
 (0)