I’ve been pretty busy in my life recently, but I finally got around writing this blog post. Hopefully, things are sorted out in my personal life and I should be able to be more regular about these updates in the future.
I’m very happy to see good progress towards rustup distribution (thanks to Kobzol again!).
The issue here is that you didn’t provide
--build-sysroot
to./y.sh test --release
, so it cannot find thestd
crate.But running
./y.sh prepare ./y.sh test --release
does work. That’s what gave me the impression that
clean all
doesn’t actually clean everything!It does actually clean everything. You need to call
./y.sh prepare
again if you ranclean all
; otherwise, it will fail to find some stuff likerustc-std-workspace-alloc
.I opened an issue to improve the documentation in this regards. Thanks for testing all this: this will help me improve the documentation.
Aha! Good to know. And yes, improved documents would be of great help.
Thanks again for working on this.