You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rustdoc failures can leave around expected build product, e.g. doc/syntax/index.html.
This means that after the first make attempt fails, if you invoke make again, it will see the build product now in place, and will continue as if the dependency has been satisified.
This is irritating if you are trying to understand how the first error happened in the first place and want to find out e.g. what the necessary command line invocation to rustdoc is needed to reproduce it.
I would recommend we change the makefiles to use an analogous stamp.syntax infrastructure for the docs that we already use for the libraries (and then you would only touch the stamp file after rustdoc had finished generating its output and returned without an error).
The text was updated successfully, but these errors were encountered:
rustdoc failures can leave around expected build product, e.g.
doc/syntax/index.html
.This means that after the first
make
attempt fails, if you invokemake
again, it will see the build product now in place, and will continue as if the dependency has been satisified.This is irritating if you are trying to understand how the first error happened in the first place and want to find out e.g. what the necessary command line invocation to
rustdoc
is needed to reproduce it.I would recommend we change the makefiles to use an analogous
stamp.syntax
infrastructure for the docs that we already use for the libraries (and then you would only touch the stamp file afterrustdoc
had finished generating its output and returned without an error).The text was updated successfully, but these errors were encountered: