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
I am trying to bootstrap rust for ARM64. I am trying to build an arm64 stage0 rustc on an x86 machine so that I can use that to natively compile rustc on ARM64. I have the aarch64-linux-gnu-gcc cross compiler installed. I am configuring rust as follows:
Unfortunately it's a currently known bug in our build system that we can't cross-compile a compiler for a target which can't actually be run on the host. In this case you're indicating that via --host=.... You may want instead to just generate a compiler which can target ARM64, in which case you only need to pass --target=....
As this is a known bug with the build system (#5258), however, I'm going to close this for now.
I am trying to bootstrap rust for ARM64. I am trying to build an arm64 stage0 rustc on an x86 machine so that I can use that to natively compile rustc on ARM64. I have the aarch64-linux-gnu-gcc cross compiler installed. I am configuring rust as follows:
On building using make, I am getting the following error:
Any ideas on how to fix this? Thanks!
The text was updated successfully, but these errors were encountered: