public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tools build: Provide consistent build options for fixdep
@ 2024-08-14 17:30 Alexander Gordeev
  2024-08-14 17:35 ` Brian Norris
  0 siblings, 1 reply; 5+ messages in thread
From: Alexander Gordeev @ 2024-08-14 17:30 UTC (permalink / raw)
  To: Brian Norris, Arnaldo Carvalho de Melo
  Cc: linux-s390, linux-kernel, linux-kbuild, bpf

The fixdep binary is being compiled and linked in one step since commit
ea974028a049 ("tools build: Avoid circular .fixdep-in.o.cmd issues").
While the host linker flags are passed to the compiler the host compiler
flags are missed.

That might lead to failures 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.
That leads to an error on s390:

/usr/bin/ld: /tmp/ccUT8Rdm.o: `stderr@@GLIBC_2.2' non-PLT reloc for
symbol defined in shared library and accessed from executable (rebuild
file with -fPIC ?)

Provide both KBUILD_HOSTCFLAGS and KBUILD_HOSTLDFLAGS to avoid that.

Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com>
---

This patch is against kernel-next next-20240814 tag

---
 tools/build/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/build/Makefile b/tools/build/Makefile
index fea3cf647f5b..18ad131f6ea7 100644
--- a/tools/build/Makefile
+++ b/tools/build/Makefile
@@ -44,4 +44,4 @@ ifneq ($(wildcard $(TMP_O)),)
 endif
 
 $(OUTPUT)fixdep: $(srctree)/tools/build/fixdep.c
-	$(QUIET_CC)$(HOSTCC) $(KBUILD_HOSTLDFLAGS) -o $@ $<
+	$(QUIET_CC)$(HOSTCC) $(KBUILD_HOSTCFLAGS) $(KBUILD_HOSTLDFLAGS) -o $@ $<
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] tools build: Provide consistent build options for fixdep
  2024-08-14 17:30 [PATCH] tools build: Provide consistent build options for fixdep Alexander Gordeev
@ 2024-08-14 17:35 ` Brian Norris
  2024-08-14 17:53   ` Alexander Gordeev
  0 siblings, 1 reply; 5+ messages in thread
From: Brian Norris @ 2024-08-14 17:35 UTC (permalink / raw)
  To: Alexander Gordeev
  Cc: Arnaldo Carvalho de Melo, linux-s390, linux-kernel, linux-kbuild,
	bpf, Thorsten Leemhuis

Hi,

On Wed, Aug 14, 2024 at 10:30 AM Alexander Gordeev
<agordeev@linux.ibm.com> wrote:
>
> The fixdep binary is being compiled and linked in one step since commit
> ea974028a049 ("tools build: Avoid circular .fixdep-in.o.cmd issues").
> While the host linker flags are passed to the compiler the host compiler
> flags are missed.
>
> That might lead to failures 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.
> That leads to an error on s390:
>
> /usr/bin/ld: /tmp/ccUT8Rdm.o: `stderr@@GLIBC_2.2' non-PLT reloc for
> symbol defined in shared library and accessed from executable (rebuild
> file with -fPIC ?)
>
> Provide both KBUILD_HOSTCFLAGS and KBUILD_HOSTLDFLAGS to avoid that.
>
> Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com>

FWIW, I already fielded some reports about this, and proposed a very
similar (but not identical) fix:

https://lore.kernel.org/lkml/20240814030436.2022155-1-briannorris@chromium.org/

Frankly, I wasn't sure about HOSTxxFLAGS vs KBUILD_HOSTxxFLAGS -- and
that's the difference between yours and mine. If yours works, that
looks like the cleaner solution. So:

Reviewed-by: Brian Norris <briannorris@chromium.org>

Either way, it might be good to also include some of these tags if
this is committed:

Closes: https://lore.kernel.org/lkml/99ae0d34-ed76-4ca0-a9fd-c337da33c9f9@leemhuis.info/
Fixes: ea974028a049 ("tools build: Avoid circular .fixdep-in.o.cmd issues")

Brian

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] tools build: Provide consistent build options for fixdep
  2024-08-14 17:35 ` Brian Norris
@ 2024-08-14 17:53   ` Alexander Gordeev
  2024-08-15  7:03     ` Thorsten Leemhuis
  0 siblings, 1 reply; 5+ messages in thread
From: Alexander Gordeev @ 2024-08-14 17:53 UTC (permalink / raw)
  To: Brian Norris, Thorsten Leemhuis
  Cc: Arnaldo Carvalho de Melo, linux-s390, linux-kernel, linux-kbuild,
	bpf, Thorsten Leemhuis

On Wed, Aug 14, 2024 at 10:35:00AM -0700, Brian Norris wrote:

Hi Brian,

> FWIW, I already fielded some reports about this, and proposed a very
> similar (but not identical) fix:
> 
> https://lore.kernel.org/lkml/20240814030436.2022155-1-briannorris@chromium.org/
> 
> Frankly, I wasn't sure about HOSTxxFLAGS vs KBUILD_HOSTxxFLAGS -- and
> that's the difference between yours and mine. If yours works, that
> looks like the cleaner solution. So:
> 
> Reviewed-by: Brian Norris <briannorris@chromium.org>
> 
> Either way, it might be good to also include some of these tags if
> this is committed:
> 
> Closes: https://lore.kernel.org/lkml/99ae0d34-ed76-4ca0-a9fd-c337da33c9f9@leemhuis.info/
> Fixes: ea974028a049 ("tools build: Avoid circular .fixdep-in.o.cmd issues")

Ah, I missed the issue was reported already - I would include these tags otherwise.

@Thorsten, would it be possible to test this fix?

Thanks!

> Brian

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] tools build: Provide consistent build options for fixdep
  2024-08-14 17:53   ` Alexander Gordeev
@ 2024-08-15  7:03     ` Thorsten Leemhuis
  2024-08-15 21:07       ` Arnaldo Carvalho de Melo
  0 siblings, 1 reply; 5+ messages in thread
From: Thorsten Leemhuis @ 2024-08-15  7:03 UTC (permalink / raw)
  To: Alexander Gordeev, Brian Norris
  Cc: Arnaldo Carvalho de Melo, linux-s390, linux-kernel, linux-kbuild,
	bpf

On 14.08.24 19:53, Alexander Gordeev wrote:
> On Wed, Aug 14, 2024 at 10:35:00AM -0700, Brian Norris wrote:
>
>> FWIW, I already fielded some reports about this, and proposed a very
>> similar (but not identical) fix:
>>
>> https://lore.kernel.org/lkml/20240814030436.2022155-1-briannorris@chromium.org/
>>
>> Frankly, I wasn't sure about HOSTxxFLAGS vs KBUILD_HOSTxxFLAGS -- and
>> that's the difference between yours and mine. If yours works, that
>> looks like the cleaner solution. So:
>>
>> Reviewed-by: Brian Norris <briannorris@chromium.org>
>>
>> Either way, it might be good to also include some of these tags if
>> this is committed:
>>
>> Closes: https://lore.kernel.org/lkml/99ae0d34-ed76-4ca0-a9fd-c337da33c9f9@leemhuis.info/
>> Fixes: ea974028a049 ("tools build: Avoid circular .fixdep-in.o.cmd issues")
> 
> Ah, I missed the issue was reported already - I would include these tags otherwise.
> 
> @Thorsten, would it be possible to test this fix?

Yeah, np. This one works as well, so feel free to add:

Tested-by: Thorsten Leemhuis <linux@leemhuis.info>

Ciao, Thorsten

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] tools build: Provide consistent build options for fixdep
  2024-08-15  7:03     ` Thorsten Leemhuis
@ 2024-08-15 21:07       ` Arnaldo Carvalho de Melo
  0 siblings, 0 replies; 5+ messages in thread
From: Arnaldo Carvalho de Melo @ 2024-08-15 21:07 UTC (permalink / raw)
  To: Thorsten Leemhuis
  Cc: Alexander Gordeev, Brian Norris, Arnaldo Carvalho de Melo,
	linux-s390, linux-kernel, linux-kbuild, bpf

On Thu, Aug 15, 2024 at 09:03:58AM +0200, Thorsten Leemhuis wrote:
> On 14.08.24 19:53, Alexander Gordeev wrote:
> > On Wed, Aug 14, 2024 at 10:35:00AM -0700, Brian Norris wrote:
> >
> >> FWIW, I already fielded some reports about this, and proposed a very
> >> similar (but not identical) fix:
> >>
> >> https://lore.kernel.org/lkml/20240814030436.2022155-1-briannorris@chromium.org/
> >>
> >> Frankly, I wasn't sure about HOSTxxFLAGS vs KBUILD_HOSTxxFLAGS -- and
> >> that's the difference between yours and mine. If yours works, that
> >> looks like the cleaner solution. So:
> >>
> >> Reviewed-by: Brian Norris <briannorris@chromium.org>
> >>
> >> Either way, it might be good to also include some of these tags if
> >> this is committed:
> >>
> >> Closes: https://lore.kernel.org/lkml/99ae0d34-ed76-4ca0-a9fd-c337da33c9f9@leemhuis.info/
> >> Fixes: ea974028a049 ("tools build: Avoid circular .fixdep-in.o.cmd issues")
> > 
> > Ah, I missed the issue was reported already - I would include these tags otherwise.
> > 
> > @Thorsten, would it be possible to test this fix?
> 
> Yeah, np. This one works as well, so feel free to add:
> 
> Tested-by: Thorsten Leemhuis <linux@leemhuis.info>

Thanks everybody, applied to perf-tools-next,

- Arnaldo

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-08-15 21:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-14 17:30 [PATCH] tools build: Provide consistent build options for fixdep Alexander Gordeev
2024-08-14 17:35 ` Brian Norris
2024-08-14 17:53   ` Alexander Gordeev
2024-08-15  7:03     ` Thorsten Leemhuis
2024-08-15 21:07       ` Arnaldo Carvalho de Melo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox