@@ -125,13 +125,18 @@ ONLY_RLIB_rustc_bitflags := 1
125
125
# On channels where the only usable crate is std, only build documentation for
126
126
# std. This keeps distributions small and doesn't clutter up the API docs with
127
127
# confusing internal details from the crates behind the facade.
128
+ #
129
+ # (Disabled while cmr figures out how to change rustdoc to make reexports work
130
+ # slightly nicer. Otherwise, all cross-crate links to Vec will go to
131
+ # libcollections, breaking them, and [src] links for anything reexported will
132
+ # not work.)
128
133
129
- ifeq ($(CFG_RELEASE_CHANNEL ) ,stable)
130
- DOC_CRATES := std
131
- else
132
- ifeq ($(CFG_RELEASE_CHANNEL ) ,beta)
133
- DOC_CRATES := std
134
- else
134
+ # ifeq ($(CFG_RELEASE_CHANNEL),stable)
135
+ # DOC_CRATES := std
136
+ # else
137
+ # ifeq ($(CFG_RELEASE_CHANNEL),beta)
138
+ # DOC_CRATES := std
139
+ # else
135
140
DOC_CRATES := $(filter-out rustc, \
136
141
$(filter-out rustc_trans, \
137
142
$(filter-out rustc_typeck, \
@@ -143,8 +148,8 @@ DOC_CRATES := $(filter-out rustc, \
143
148
$(filter-out log, \
144
149
$(filter-out getopts, \
145
150
$(filter-out syntax, $(CRATES ) ) ) ) ) ) ) ) ) ) ) )
146
- endif
147
- endif
151
+ # endif
152
+ # endif
148
153
COMPILER_DOC_CRATES := rustc rustc_trans rustc_borrowck rustc_resolve \
149
154
rustc_typeck rustc_driver syntax rustc_privacy \
150
155
rustc_lint
0 commit comments