]> www.infradead.org Git - users/jedix/linux-maple.git/commit
tools build: Provide consistent build options for fixdep
authorAlexander Gordeev <agordeev@linux.ibm.com>
Thu, 15 Aug 2024 07:20:46 +0000 (09:20 +0200)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Thu, 15 Aug 2024 21:08:17 +0000 (18:08 -0300)
commitb53f20b323ee3c5daa5494ad69e3ae0e77cfd82a
treeb9fecaafff3b8757bed9c6e7232bd336b32712e8
parentac01c8c4246546fd8340a232f3ada1921dc0ee48
tools build: Provide consistent build options for fixdep

The fixdep binary is being compiled and linked in one step. While the
host linker flags are passed to the compiler the host compiler flags are
missed.

That leads to build errors at least on x86_64, arm64 and s390 as result
of the compiler vs linker flags inconsistency. For example, during RPM
package build redhat-hardened-ld script is provided to gcc, while
redhat-hardened-cc1 script is missed.

Provide both KBUILD_HOSTCFLAGS and KBUILD_HOSTLDFLAGS to avoid that.

Fixes: ea974028a049f2ce ("tools build: Avoid circular .fixdep-in.o.cmd issues")
Closes: https://lore.kernel.org/lkml/99ae0d34-ed76-4ca0-a9fd-c337da33c9f9@leemhuis.info/
Reported-by: Thorsten Leemhuis <linux@leemhuis.info>
Reviewed-by: Brian Norris <briannorris@chromium.org>
Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com>
Tested-by: Thorsten Leemhuis <linux@leemhuis.info>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Link: https://lore.kernel.org/r/20240815072046.1002837-1-agordeev@linux.ibm.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/build/Makefile