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
It looks like this was caused by #35021 (cc @japaric). It's trying to pass -lstatic=compiler-rt to rustdoc when compiling the docs for compiler_builtins but rustdoc doesn't support -l.
This can be closed now. It was a bug in the long gone Makefiles. The compiler docs now build fine with rustbuild, or at least did and will again after #40852.
Activity
hanna-kruppe commentedon Sep 16, 2016
Again? #36031 was only fixed 11 days ago 😢 I second this motion by @retep998 in the last issue:
llogiq commentedon Sep 16, 2016
I third @retep998's motion. At least one should have it.
ollie27 commentedon Sep 18, 2016
It looks like this was caused by #35021 (cc @japaric). It's trying to pass
-lstatic=compiler-rt
to rustdoc when compiling the docs forcompiler_builtins
but rustdoc doesn't support-l
.-l
flag for compiler_builtins #36738stefanhusmann commentedon Nov 2, 2016
How can this be fixed? Alternativly, how can I suppress the build of docs?
Manishearth commentedon Nov 2, 2016
./configure --disable-compiler-docs
. It's off by default.I use
on my builds to get the compiler doc build to pass
ollie27 commentedon Mar 27, 2017
This can be closed now. It was a bug in the long gone Makefiles. The compiler docs now build fine with rustbuild, or at least did and will again after #40852.