On Thu, 2021-04-08 at 02:33 +0200, raingloom wrote:
Toggle quote (4 lines)
> I tried compiling lua with clang on a whim and found out about> cc-for-target. Not sure if that's the only instance of hardcoded gcc,> but it's certainly a prominent one.
A little more information:this is not specific to cc-for-target. Try searching for "CC=gcc".
Most uses of "CC=gcc" are incorrect when cross-compiling. Whencross-compiling, these should be "CC=ARCHITECTURE-linux-gnu-gcc" orsomething like that. The "cc-for-target" procedure outputs the correctstring.
Toggle quote (4 lines)
> What would be the idiomatic way to fix it? Detect clang dynamically? Or> move cc-for-target inside the build system module and make it available> at build time?
To avoid massive rebuilds, perhaps the procedure "cc-for-target" could bereplaced with a macro "cc-for-target" that accesses the native-inputs ofthis-package to determine whether it should output "CC=gcc" /"CC=ARCHITECTURE-linux-gnu-gcc" or "CC=clang" / "CC=ARCHITECTURE-linux-gnu-clang"?
Also, moving cc-for-taget to the build system module would require changingexisting package definitions: ,(string-append "CC=" (cc-for-target)) --> (string-append "CC=" (cc-for-target)) (string-append "CC=" ,(cc-for-target)) --> (string-append "CC=" (cc-for-targt))
Warning: I haven't tested whether this approach works with --with-c-toolchain.
Greetings,Maxime.