Cyclic pub-use chains triggered infinite recursion, and this commit adds a hash set to guard against cyclic recursion. This will cause one of the reexports to render as a `pub use` instead of inlining the documentation. Closes #16274
10 lines
147 B
Makefile
10 lines
147 B
Makefile
-include ../tools.mk
|
|
|
|
# FIXME ignore windows
|
|
ifndef IS_WINDOWS
|
|
all:
|
|
$(HOST_RPATH_ENV) $(RUSTDOC) -w html -o $(TMPDIR)/doc foo.rs
|
|
else
|
|
all:
|
|
endif
|
|
|