Re: [PATCH RFC] kbuild: Prevent compiler mismatch with external modules

From: Linus Torvalds
Date: Thu Jan 28 2021 - 16:05:08 EST


On Thu, Jan 28, 2021 at 12:52 PM Josh Poimboeuf <jpoimboe@xxxxxxxxxx> wrote:
>
> Huh? Why would you do a "make oldconfig" on a distro-released kernel
> before building an OOT module?

I guarantee you that this patch will *make* people do that.

> Hm? Are you saying the check is too strict, since GCC9 binaries _might_
> be compatible with GCC10?

I'm saying that your argument about minor and major versions is bogus.

There is absolutely nothing that makes gcc9 object files not
compatible with gcc10.

And this is not just some theoretical issue: this is a fundamental
fact of EVERY SINGLE LIBRARY OUT THERE.

Do you think that when you compile your binaries with gcc-10, you need
to link against a standard library that has been compiled with gcc-10?

I really think the whole compiler version check is purely voodoo programming.

Linus