Conversation

Where the heck did this "cross compiling is more expensive than compiling natively" myth come from? I've had like 4 or 5 people show up believing that already. It doesn't make any sense.
64
666
Replying to
Using gcc and binutils makes it unnecessarily difficult by requiring a separate toolchain for each environment. Terrible build systems like make/autotools don't help either. Cross-compiling is great with a single universal LLVM toolchain and a build system handling the details.
1
6