
Hi! On 9/29/21 17:18, Jan Engelhardt wrote:
On Wednesday 2021-09-29 17:05, John Paul Adrian Glaubitz wrote:
I'm currently trying to cross-compile the Rust compiler on openSUSE but I'm running into the problem that the build system wants to invoke the cross-gcc compiler with the naming scheme $ARCH-linux-gnu-gcc where ARCH is the target architecture.
just don't spend any time on unripe software.
mkdir bin ln -s /usr/bin/$ARCH-suse-linux-gcc bin/$ARCH-linux-gnu-gcc export PATH="$PWD/bin:$PATH"
Thanks! Unfortunately that doesn't get me very far as openSUSE doesn't ship any libraries for cross-development, just the pure toolchain. So trying to build anything else than the kernel or bare-metal stuff fails. I guess I'm stuck with Debian for these tasks. Adrian