Hello all!
I am trying to build rust (1.64.0) on x86_64 from source. I downloaded rust_lang/rust. In my case basically, the distro doesn't have any rust packages and it is an impossible to install them by standard paths.
After "x.py install" I got the rustc in "prefix/bin". But cargo is absent. There are only "rustc rustdoc rust-gdb rust-gdbgui rust-lldb" binaries.
-
How to build and install all set of rust binaries from source including cargo and etc? (The distro doesn't have preinstalled cargo.)
-
Utility x.py downloads additional git-projects in a building process. How to list a whole set of such projects and tune their source origins?
-
As I see, utility x.py downloads bootstrap "package", which contains libobject-N.rlib. In other hand, (by default) x.py doesn't download git-project for libobject and doesn't build this library from source. The prebuilt library libobject just is coping from bootstrap to stage0, ..., from stage1 to install prefix. How to download and build libobject and other such libraries from source?