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
When compiling rust with targets for both x86_64-unknown-linux-gnu and i686-unknown-linux-gnu, both rustlibs will be compiled and stored inside stage2-std, but only x86_64 ones will be installed when issuing the make install command.
Note the --target=x86_64-unknown-linux-gnu,i686-unknown-linux-gnu on the configure command.
Here is the stage2-stdrustlib directory:
$ ls ./build/tmp/dist/rust-std-1.15.1-i686-unknown-linux-gnu/rust-std-i686-unknown-linux-gnu/lib/rustlib
i686-unknown-linux-gnu
$ ls ./build/x86_64-unknown-linux-gnu/stage2-std
i686-unknown-linux-gnu
release
x86_64-unknown-linux-gnu
When compiling rust with targets for both
x86_64-unknown-linux-gnu
andi686-unknown-linux-gnu
, bothrustlibs
will be compiled and stored insidestage2-std
, but onlyx86_64
ones will be installed when issuing themake install
command.Here are the steps I'm doing:
Note the
--target=x86_64-unknown-linux-gnu,i686-unknown-linux-gnu
on theconfigure
command.Here is the
stage2-std
rustlib
directory:Here is the
rustlibs
directory aftermake install
The text was updated successfully, but these errors were encountered: