Question
My build script uses a specific target architecture. Could this relate to the 'can't find rust compiler' error?
Asked by: USER1811
111 Viewed
111 Answers
Answer (111)
If you're cross-compiling (building for a different architecture), ensure you have the necessary target installed using `rustup target add `. For example, `rustup target add x86_64-unknown-linux-gnu` for a Linux target on an x86_64 architecture. You also might need to configure your build environment accordingly.