From nobody Sat May 4 22:21:51 2024 Delivered-To: importer@patchew.org Received-SPF: none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org ARC-Seal: i=1; a=rsa-sha256; t=1564179309; cv=none; d=zoho.com; s=zohoarc; b=V8rrSbW4v7i+/ykrMG7wRKa6Ji8pOCI5iz0MOS40mEHKYAC8wDanBXYNFtK6fEN7NPRjtSy2qkAZxPzcVp9rhl/BirQBeZYk8IwFUgW+G4+ncMbWib3WPk8Ad5HEt7PSiJHCs/9So0T6VbYM9F2WzgWrpGWqc+Fe8eypUVZjj8w= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1564179309; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Sender:Subject:To:ARC-Authentication-Results; bh=e/hWaxjcs/1ZGX8viivxj/A2o5Yr6WD9TBNavSoIKAc=; b=XTIIXrOeaQtJicNQSbXk5HuYdhA8lJdryLN55JFBqNMjl4pr3465gX3FBP7HLwpE5bWxmOcNk6PmS9z87PfuicFzdshdlKdW/kBxb22sfLM4TkSSlFdoye62Eth1pVGj5U3688mubgs8qMXarW8/HEoMmk1HMqYSb8WcSZGQ1cc= ARC-Authentication-Results: i=1; mx.zoho.com; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 1564179309228882.9339108563447; Fri, 26 Jul 2019 15:15:09 -0700 (PDT) Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hr8TK-0006TQ-Cl; Fri, 26 Jul 2019 22:13:54 +0000 Received: from us1-rack-dfw2.inumbo.com ([104.130.134.6]) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hr8TI-0006TL-U0 for xen-devel@lists.xenproject.org; Fri, 26 Jul 2019 22:13:52 +0000 Received: from mx1.suse.de (unknown [195.135.220.15]) by us1-rack-dfw2.inumbo.com (Halon) with ESMTPS id a5763ddc-aff2-11e9-8980-bc764e045a96; Fri, 26 Jul 2019 22:13:51 +0000 (UTC) Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id EF350AE34; Fri, 26 Jul 2019 22:13:49 +0000 (UTC) X-Inumbo-ID: a5763ddc-aff2-11e9-8980-bc764e045a96 X-Virus-Scanned: by amavisd-new at test-mx.suse.de From: Dario Faggioli To: xen-devel@lists.xenproject.org Date: Sat, 27 Jul 2019 00:13:49 +0200 Message-ID: <156417922934.29470.16776755402986910394.stgit@Palanthas> User-Agent: StGit/0.17.1-dirty MIME-Version: 1.0 Subject: [Xen-devel] [PATCH] tools: ipxe: update for fixing build with GCC9 X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Cc: Wei Liu Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" Building with GCC9 (on openSUSE Tubmleweed) generates a lot of errors of the "taking address of packed member of ... may result in an unaligned pointer value" kind. Updating to upstream commit 1dd56dbd11082 ("[build] Workaround compilation error with gcc 9.1") seems to fix the problem. For more info, see: https://git.ipxe.org/ipxe.git/commit/1dd56dbd11082fb622c2ed21cfaced4f47d798= a6 Signed-off-by: Dario Faggioli Acked-by: Wei Liu --- Cc: Wei Liu --- Hey, Wei, I have never played much with ipxe, so I can't be 100% sure that this is the best idea, and what could be the problems. I just thought I'll mention the issue to you, in the form of a patch, in an attempt to help as much as possible. Regards --- tools/firmware/etherboot/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/firmware/etherboot/Makefile b/tools/firmware/etherboot/M= akefile index fd8dfdf5a7..0de30599bf 100644 --- a/tools/firmware/etherboot/Makefile +++ b/tools/firmware/etherboot/Makefile @@ -10,7 +10,7 @@ else IPXE_GIT_URL ?=3D git://git.ipxe.org/ipxe.git endif =20 -IPXE_GIT_TAG :=3D d2063b7693e0e35db97b2264aa987eb6341ae779 +IPXE_GIT_TAG :=3D 1dd56dbd11082fb622c2ed21cfaced4f47d798a6 =20 IPXE_TARBALL_URL ?=3D $(XEN_EXTFILES_URL)/ipxe-git-$(IPXE_GIT_TAG).tar.gz =20 _______________________________________________ Xen-devel mailing list Xen-devel@lists.xenproject.org https://lists.xenproject.org/mailman/listinfo/xen-devel