grub-devel
[Top][All Lists]
Advanced

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

Re: [PATCH] Fix build error in binutils 2.36


From: Mike Gilbert
Subject: Re: [PATCH] Fix build error in binutils 2.36
Date: Tue, 14 Sep 2021 10:13:36 -0400

On Mon, Aug 9, 2021 at 12:37 AM Michael Chang via Grub-devel
<grub-devel@gnu.org> wrote:
>
> On Thu, Aug 05, 2021 at 03:07:21PM +0200, Daniel Kiper wrote:
> > On Mon, Aug 02, 2021 at 05:41:15PM +0800, Michael Chang via Grub-devel 
> > wrote:
> > > The xen build fails on binutils 2.36 with the following error.
> > >
> > > /usr/lib64/gcc/x86_64-suse-linux/10/../../../../x86_64-suse-linux/bin/ld:
> > > section .note.gnu.property VMA [0000000000400158,0000000000400187]
> > > overlaps section .bss VMA [000000000000f000,000000000041e1af]
> >
> > Could you send us full command which is failing?
>
> It is reproducible on xen platfrom with all defaults.
>
>  git clone https://git.savannah.gnu.org/git/grub.git
>  cd grub
>  ./bootstrap
>  mkdir build-xen
>  cd build-xen
>  ../configure --with-platform=xen
>  make
>
> > Anyway, I would consider writing our own linker script which is dropping
> > .note.gnu.property if we do not need it.
>
> Dropping it from the assembler output is a cleaner cleanup than linker
> script IMHO. We also faced similar issue in the past to stripping off
> this section from soruces of objcopy to produce correct binary.
>
>  6643507ce build: Fix GRUB i386-pc build with Ubuntu gcc
>
> To avoid falling into such trap again when manipulating on object files
> we'd better use assmbler option as the fix once and for all.
>
> > > The most significant factor is that new assembler (gnu as) generates the
> >
> > Could you give us gas version which does that?
>
>  # as --version
>  GNU assembler (GNU Binutils; openSUSE Tumbleweed) 2.36.1.20210326-4
>  Copyright (C) 2021 Free Software Foundation, Inc.
>  This program is free software; you may redistribute it under the terms of
>  the GNU General Public License version 3 or later.
>  This program has absolutely no warranty.
>  This assembler was configured for a target of `x86_64-suse-linux'.
>
> > > .note.gnu.property section as default. This note section overlaps with
> > > .bss because it doesn't reposition with -Wl,-Ttext,0 with which the base
> > > address of .text section is set, rather the address of
> > > .note.gnu.property is calculated for some reason from 0x400000 where the
> > > elf executable defaults to start.
> >
> > Is not it linker bug?
>
> The binutils upstream apparently doesn't seem to consider this as a bug ...
>
> https://sourceware.org/bugzilla/show_bug.cgi?id=27377
>
> Thanks,
> Michael

Just wondering if there has been any progress on this issue.

A few people have commented on the related bug [1] for Gentoo Linux
and a couple have confirmed that this patch fixes the build failure.
However, I haven't found anyone able to test if the resulting code
actually works at run time.

[1] https://bugs.gentoo.org/787221



reply via email to

[Prev in Thread] Current Thread [Next in Thread]