All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Bruce Ashfield" <bruce.ashfield@gmail.com>
To: Christopher Clark <christopher.w.clark@gmail.com>
Cc: meta-virtualization@lists.yoctoproject.org, cardoe@gentoo.org
Subject: Re: [meta-virtualization][PATCH] xen, xen-tools: apply workaround for gnu linker error to fix x86 build
Date: Fri, 27 Aug 2021 10:51:53 -0400	[thread overview]
Message-ID: <20210827145150.GA23331@gmail.com> (raw)
In-Reply-To: <20210824051027.200287-1-christopher.w.clark@gmail.com>

merged!

Bruce

In message: [meta-virtualization][PATCH] xen, xen-tools: apply workaround for gnu linker error to fix x86 build
on 23/08/2021 Christopher Clark wrote:

> Upstream patch applied to each Xen and Xen tools recipe to fix the build
> of the hypervisor and shim with GNU linker 2.37.
> 
> Signed-off-by: Christopher Clark <christopher.w.clark@gmail.com>
> ---
>  ...-around-build-issue-with-GNU-ld-2.37.patch | 36 +++++++++++++++++++
>  recipes-extended/xen/xen-tools_4.14.bb        |  1 +
>  recipes-extended/xen/xen-tools_4.15.bb        |  1 +
>  recipes-extended/xen/xen-tools_git.bb         |  1 +
>  recipes-extended/xen/xen_4.14.bb              |  1 +
>  recipes-extended/xen/xen_4.15.bb              |  1 +
>  recipes-extended/xen/xen_git.bb               |  1 +
>  7 files changed, 42 insertions(+)
>  create mode 100644 recipes-extended/xen/files/0001-x86-work-around-build-issue-with-GNU-ld-2.37.patch
> 
> diff --git a/recipes-extended/xen/files/0001-x86-work-around-build-issue-with-GNU-ld-2.37.patch b/recipes-extended/xen/files/0001-x86-work-around-build-issue-with-GNU-ld-2.37.patch
> new file mode 100644
> index 0000000..f5108be
> --- /dev/null
> +++ b/recipes-extended/xen/files/0001-x86-work-around-build-issue-with-GNU-ld-2.37.patch
> @@ -0,0 +1,36 @@
> +From 58ad654ebce7ccb272a3f4f3482c03aaad850d31 Mon Sep 17 00:00:00 2001
> +From: Jan Beulich <jbeulich@suse.com>
> +Date: Thu, 22 Jul 2021 11:20:38 +0200
> +Subject: [PATCH] x86: work around build issue with GNU ld 2.37
> +
> +I suspect it is commit 40726f16a8d7 ("ld script expression parsing")
> +which broke the hypervisor build, by no longer accepting section names
> +with a dash in them inside ADDR() (and perhaps other script directives
> +expecting just a section name, not an expression): .note.gnu.build-id
> +is such a section.
> +
> +Quoting all section names passed to ADDR() via DECL_SECTION() works
> +around the regression.
> +
> +Signed-off-by: Jan Beulich <jbeulich@suse.com>
> +Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>
> +---
> + xen/arch/x86/xen.lds.S | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/xen/arch/x86/xen.lds.S b/xen/arch/x86/xen.lds.S
> +index 9c6c1c8005..955d5cf4a0 100644
> +--- a/xen/arch/x86/xen.lds.S
> ++++ b/xen/arch/x86/xen.lds.S
> +@@ -18,7 +18,7 @@ ENTRY(efi_start)
> + #else /* !EFI */
> + 
> + #define FORMAT "elf64-x86-64"
> +-#define DECL_SECTION(x) x : AT(ADDR(x) - __XEN_VIRT_START)
> ++#define DECL_SECTION(x) x : AT(ADDR(#x) - __XEN_VIRT_START)
> + 
> + ENTRY(start_pa)
> + 
> +-- 
> +2.25.1
> +
> diff --git a/recipes-extended/xen/xen-tools_4.14.bb b/recipes-extended/xen/xen-tools_4.14.bb
> index 6fd6f7f..ce5dc2e 100644
> --- a/recipes-extended/xen/xen-tools_4.14.bb
> +++ b/recipes-extended/xen/xen-tools_4.14.bb
> @@ -9,6 +9,7 @@ SRC_URI = " \
>      file://0001-firmware-provide-a-stand-alone-set-of-headers-Xen-4.14.patch \
>      file://0001-tools-firmware-Build-firmware-as-ffreestanding-Xen-4.14.patch \
>      file://0001-libs-foreignmemory-Fix-osdep_xenforeignmemory_map-pr.patch \
> +    file://0001-x86-work-around-build-issue-with-GNU-ld-2.37.patch \
>      "
>  
>  LIC_FILES_CHKSUM ?= "file://COPYING;md5=419739e325a50f3d7b4501338e44a4e5"
> diff --git a/recipes-extended/xen/xen-tools_4.15.bb b/recipes-extended/xen/xen-tools_4.15.bb
> index f3f9cd3..e9c3bd6 100644
> --- a/recipes-extended/xen/xen-tools_4.15.bb
> +++ b/recipes-extended/xen/xen-tools_4.15.bb
> @@ -7,6 +7,7 @@ SRC_URI = " \
>      git://xenbits.xen.org/xen.git;branch=${XEN_BRANCH} \
>      file://0001-python-pygrub-pass-DISTUTILS-xen-4.15.patch \
>      file://0001-libs-foreignmemory-Fix-osdep_xenforeignmemory_map-pr.patch \
> +    file://0001-x86-work-around-build-issue-with-GNU-ld-2.37.patch \
>      "
>  
>  LIC_FILES_CHKSUM ?= "file://COPYING;md5=419739e325a50f3d7b4501338e44a4e5"
> diff --git a/recipes-extended/xen/xen-tools_git.bb b/recipes-extended/xen/xen-tools_git.bb
> index 0b2dce9..6926bd9 100644
> --- a/recipes-extended/xen/xen-tools_git.bb
> +++ b/recipes-extended/xen/xen-tools_git.bb
> @@ -7,6 +7,7 @@ SRC_URI = " \
>      git://xenbits.xen.org/xen.git;branch=${XEN_BRANCH} \
>      file://0001-python-pygrub-pass-DISTUTILS-xen-4.15.patch \
>      file://0001-libs-foreignmemory-Fix-osdep_xenforeignmemory_map-pr.patch \
> +    file://0001-x86-work-around-build-issue-with-GNU-ld-2.37.patch \
>      "
>  
>  LIC_FILES_CHKSUM ?= "file://COPYING;md5=419739e325a50f3d7b4501338e44a4e5"
> diff --git a/recipes-extended/xen/xen_4.14.bb b/recipes-extended/xen/xen_4.14.bb
> index 0dd9d3c..291ba16 100644
> --- a/recipes-extended/xen/xen_4.14.bb
> +++ b/recipes-extended/xen/xen_4.14.bb
> @@ -7,6 +7,7 @@ SRC_URI = " \
>      git://xenbits.xen.org/xen.git;branch=${XEN_BRANCH} \
>      file://xen-arm64-implement-atomic-fetch-add.patch \
>      file://0001-menuconfig-mconf-cfg-Allow-specification-of-ncurses-location.patch \
> +    file://0001-x86-work-around-build-issue-with-GNU-ld-2.37.patch \
>      "
>  
>  LIC_FILES_CHKSUM ?= "file://COPYING;md5=419739e325a50f3d7b4501338e44a4e5"
> diff --git a/recipes-extended/xen/xen_4.15.bb b/recipes-extended/xen/xen_4.15.bb
> index d0aa176..0605441 100644
> --- a/recipes-extended/xen/xen_4.15.bb
> +++ b/recipes-extended/xen/xen_4.15.bb
> @@ -8,6 +8,7 @@ SRC_URI = " \
>      file://xen-arm64-implement-atomic-fetch-add.patch \
>      file://0001-menuconfig-mconf-cfg-Allow-specification-of-ncurses-location.patch \
>      file://0001-x86-make-hypervisor-build-with-gcc11.patch \
> +    file://0001-x86-work-around-build-issue-with-GNU-ld-2.37.patch \
>      "
>  
>  LIC_FILES_CHKSUM ?= "file://COPYING;md5=419739e325a50f3d7b4501338e44a4e5"
> diff --git a/recipes-extended/xen/xen_git.bb b/recipes-extended/xen/xen_git.bb
> index 7ce7228..12c9403 100644
> --- a/recipes-extended/xen/xen_git.bb
> +++ b/recipes-extended/xen/xen_git.bb
> @@ -8,6 +8,7 @@ SRC_URI = " \
>      file://xen-arm64-implement-atomic-fetch-add.patch \
>      file://0001-menuconfig-mconf-cfg-Allow-specification-of-ncurses-location.patch \
>      file://0001-x86-make-hypervisor-build-with-gcc11.patch \
> +    file://0001-x86-work-around-build-issue-with-GNU-ld-2.37.patch \
>      "
>  
>  LIC_FILES_CHKSUM ?= "file://COPYING;md5=419739e325a50f3d7b4501338e44a4e5"
> -- 
> 2.25.1
> 

      reply	other threads:[~2021-08-27 14:51 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-24  5:10 [meta-virtualization][PATCH] xen, xen-tools: apply workaround for gnu linker error to fix x86 build Christopher Clark
2021-08-27 14:51 ` Bruce Ashfield [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210827145150.GA23331@gmail.com \
    --to=bruce.ashfield@gmail.com \
    --cc=cardoe@gentoo.org \
    --cc=christopher.w.clark@gmail.com \
    --cc=meta-virtualization@lists.yoctoproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.