[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] x86: conditionalize workaround for build issue with GNU ld 2.37


  • To: Roger Pau Monné <roger.pau@xxxxxxxxxx>
  • From: Jan Beulich <jbeulich@xxxxxxxx>
  • Date: Mon, 13 Sep 2021 17:07:54 +0200
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=suse.com; dmarc=pass action=none header.from=suse.com; dkim=pass header.d=suse.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version; bh=tDe0mJCFga/oCmqWClD56ZdtWxHgiXlSThWmhIwVMYQ=; b=BOGGsbuorCQq5WJKWUOu9h03qFGhft+vpMIyV4j1KU6sHi8Mmm5+wl9KO3DMCliLPmjLRfcZDdCi51ztDtQJ8Zz2+zQJpfTJtEfjN/ZVzlsvyF8cwNRp4xd/WTkdfulUbYa4ugWYZspqslm4bUSEjbvbiKoq0Xfe/6SSMFQqKpza6hTg7KwajAxqpJgGhCwVpfOryGHDHT/WaaFOfWbJKHsmfwEd//fJgxjPLOmdLx07wl7O7lqOE1iyTCAnJBujy8BaEJuEp/79OQyokXFzRFXGAKmU6JdTVZwcas2/iR3N+C94n1OHQeA0eaXQK0x16WL1Xu1DhkW71EsUKA5F1Q==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=HwqD6sgUMvO8BMjIuSiaYlECZAM1S+it9IzMCfVfLQPkYo8pr13ZI1UVT6g2Mnb2BcdgBbiFkSM4WI9oRxcJgr4kqGIH923WlSFNJs2RG9w0SgGaIUi+OGfTCqFpdYVk2HsJQ4RVTcRqYcCO/AyDl8tYxB/YeY82DObx0+bFFsoEo/dZid8OqT+bn25mQJB2oOPdxF7yGTtWawBXoFAbEEl2aKOVxwUt1eX9FIwNlRWI1u5vUVq4vdL8HmOUwXyYXUvgBm8dNZFchQ2cbMmFyeQjg9WDNojMyx1Zr/QYRG4us9RBcQnHVOiifoWDOIiGvv/lhWVai3NAHpB6Jwo8uA==
  • Authentication-results: xen.org; dkim=none (message not signed) header.d=none;xen.org; dmarc=none action=none header.from=suse.com;
  • Cc: "xen-devel@xxxxxxxxxxxxxxxxxxxx" <xen-devel@xxxxxxxxxxxxxxxxxxxx>, Andrew Cooper <andrew.cooper3@xxxxxxxxxx>, Wei Liu <wl@xxxxxxx>
  • Delivery-date: Mon, 13 Sep 2021 15:08:07 +0000
  • List-id: Xen developer discussion <xen-devel.lists.xenproject.org>

On 13.09.2021 16:33, Roger Pau Monné wrote:
> On Mon, Sep 13, 2021 at 04:05:15PM +0200, Jan Beulich wrote:
>> On 13.09.2021 15:37, Roger Pau Monné wrote:
>>> On Thu, Sep 09, 2021 at 04:35:49PM +0200, Jan Beulich wrote:
>>>> I haven't been able to find an environment where I could actually try
>>>> with lld (ld.lld); all testing was with GNU ld (ld.bfd).
>>>
>>> Thanks for fixing this. I've been able to test with LLVM ld and the
>>> workaround is fine.
>>
>> Oh, good, thanks for trying this out.
>>
>>>> --- a/xen/arch/x86/Makefile
>>>> +++ b/xen/arch/x86/Makefile
>>>> @@ -92,10 +92,16 @@ efi-$(CONFIG_PV_SHIM_EXCLUSIVE) :=
>>>>  
>>>>  ifneq ($(build_id_linker),)
>>>>  notes_phdrs = --notes
>>>> +# Determine whether to engage a workaround for GNU ld 2.37.
>>>> +build-id-ld-good = $(shell echo 'void test(void) {}' \
>>>> +                           | $(CC) $(XEN_CFLAGS) -o .check.o -c -x c - 
>>>> 2>.check.err \
>>>> +                           && $(LD) -T check.lds -o .check.elf .check.o 
>>>> 2>>.check.err \
>>>> +                           && echo y)
>>>
>>> Do we want to make this a Kconfig option (ie: LD_UNQUOTED_DASH) and
>>> then use is here?
>>>
>>> We already have compiler and assembler checks in x86/Kconfig, so it
>>> would seem more natural to place it there.
>>
>> The question of whether to record tool chain capabilities in .config
>> is still pending. I'm not convinced this is a good idea, Andrew keeps
>> shouting me out for that, and an actual discussion doesn't really
>> happen. Yet unlike back at the time when I first raised my concern,
>> Anthony meanwhile supports me in at least the question (to Andrew) of
>> when such a discussion would have happened: Neither of us is aware,
>> yet Andrew claims it did happen, but so far didn't point out where
>> one could read about what was discussed and decided there.
>>
>> For the few uses we've accumulated I gave (if at all) an ack for
>> things happening under some sort of pressure, with the request that
>> aformentioned discussion would happen subsequently (and, depending on
>> outcome, these would be converted to another approach if need be). I
>> have meanwhile realized that it was a mistake to allow such things in
>> on this basis - the more of them we gain, the more I'm hearing "we've
>> already got some".
> 
> I see, that's not an ideal situation from a review PoV, as we don't
> have a clear placement for those and that will just cause confusion
> (and more work since there are potentially two places to check).
> 
> What's the benefit of placing the checks in Kconfig instead of the
> Makefiles?
> 
> As I understand Kconfig is run only once, while the Makefile could run
> the check multiple times.

Right - as many times as a directory would be entered for building,
times the number of evaluations of a respective variable.

> The downfall of having them in .config is that .config could suddenly
> change as tools are updated or as it's moved around different systems
> (yet .config already contains specific compiler version information).

Correct: Tool chain specific information may get updated, but then
further options may get silently turned off. Plus to update tool
chain specific information there needs to be a trigger to invoke
kconfig in the first place. Merely relying on make dependencies is
not enough there. Iirc we don't have any means in place yet to
actually enforce this even when there's no other reason to run
kconfig in the course of re-building a previously built tree.

Jan




 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.