public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "gaoliming" <gaoliming@byosoft.com.cn>
To: <devel@edk2.groups.io>, <sunilvl@ventanamicro.com>
Cc: "'Rebecca Cran'" <rebecca@bsdio.com>,
	"'Bob Feng'" <bob.c.feng@intel.com>,
	"'Yuwei Chen'" <yuwei.chen@intel.com>,
	"'Andrei Warkentin'" <andrei.warkentin@intel.com>
Subject: 回复: [edk2-devel] [PATCH 1/1] BaseTools/tools_def: Add "-fno-unwind-tables" to GCC5_RISCV64_CC_FLAGS
Date: Sun, 25 Jun 2023 09:06:34 +0800	[thread overview]
Message-ID: <03a301d9a701$490bdb60$db239220$@byosoft.com.cn> (raw)
In-Reply-To: <ZJPMqOMbPDepzmDz@sunil-laptop>

Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>

> -----邮件原件-----
> 发件人: devel@edk2.groups.io <devel@edk2.groups.io> 代表 Sunil V L
> 发送时间: 2023年6月22日 12:23
> 收件人: devel@edk2.groups.io
> 抄送: Rebecca Cran <rebecca@bsdio.com>; Liming Gao
> <gaoliming@byosoft.com.cn>; Bob Feng <bob.c.feng@intel.com>; Yuwei Chen
> <yuwei.chen@intel.com>; Andrei Warkentin <andrei.warkentin@intel.com>
> 主题: Re: [edk2-devel] [PATCH 1/1] BaseTools/tools_def: Add
> "-fno-unwind-tables" to GCC5_RISCV64_CC_FLAGS
> 
> Hi Liming,
> 
> Gentle ping!
> 
> We need this to support gcc-13.
> 
> Thanks!
> Sunil
> On Wed, Jun 14, 2023 at 05:29:12PM +0530, Sunil V L via groups.io wrote:
> > Hi Liming,
> >
> > Could you please help with review and merge of this patch? Do I need to
> > raise a BZ ticket?
> >
> > Thanks!
> > Sunil
> > On Fri, Jun 02, 2023 at 10:32:54PM +0530, Sunil V L wrote:
> > > gcc-13 for RISC-V enables unwind tables by default similar to ARM64.
> > > This generates .eh_frame_hdr section which is not handled well by
> > > GenFw causing failures.
> > >
> > > Disable the unwind tables by adding -fno-unwind-tables flag similar
> > > to [1].
> > >
> > > [1] - https://github.com/tianocore/edk2/commit/cbf00651eda6
> > >
> > > Signed-off-by: Sunil V L <sunilvl@ventanamicro.com>
> > > Cc: Rebecca Cran <rebecca@bsdio.com>
> > > Cc: Liming Gao <gaoliming@byosoft.com.cn>
> > > Cc: Bob Feng <bob.c.feng@intel.com>
> > > Cc: Yuwei Chen <yuwei.chen@intel.com>
> > > Cc: Andrei Warkentin <andrei.warkentin@intel.com>
> > > ---
> > >  BaseTools/Conf/tools_def.template | 2 +-
> > >  1 file changed, 1 insertion(+), 1 deletion(-)
> > >
> > > diff --git a/BaseTools/Conf/tools_def.template
> b/BaseTools/Conf/tools_def.template
> > > index 92421e3d0118..90f4105506e5 100755
> > > --- a/BaseTools/Conf/tools_def.template
> > > +++ b/BaseTools/Conf/tools_def.template
> > > @@ -858,7 +858,7 @@ DEFINE GCC5_RISCV_OPENSBI_TYPES
> = -DOPENSBI_EXTERNAL_SBI_TYPES
> > >
> > >  DEFINE GCC5_RISCV64_ARCH                   = rv64gc
> > >  DEFINE GCC5_RISCV32_RISCV64_ASLDLINK_FLAGS =
> DEF(GCC5_RISCV_ALL_DLINK_COMMON) -Wl,--entry,ReferenceAcpiTable -u
> ReferenceAcpiTable
> > > -DEFINE GCC5_RISCV64_CC_FLAGS               =
> DEF(GCC5_RISCV_ALL_CC_FLAGS)
> DEF(GCC5_RISCV_ALL_CC_FLAGS_WARNING_DISABLE)
> DEF(GCC5_RISCV_OPENSBI_TYPES) -march=DEF(GCC5_RISCV64_ARCH)
> -fno-builtin -fno-builtin-memcpy -fno-stack-protector -Wno-address
> -fno-asynchronous-unwind-tables -Wno-unused-but-set-variable
> -fpack-struct=8 -mcmodel=medany -mabi=lp64 -mno-relax
> > > +DEFINE GCC5_RISCV64_CC_FLAGS               =
> DEF(GCC5_RISCV_ALL_CC_FLAGS)
> DEF(GCC5_RISCV_ALL_CC_FLAGS_WARNING_DISABLE)
> DEF(GCC5_RISCV_OPENSBI_TYPES) -march=DEF(GCC5_RISCV64_ARCH)
> -fno-builtin -fno-builtin-memcpy -fno-stack-protector -Wno-address
> -fno-asynchronous-unwind-tables -fno-unwind-tables
> -Wno-unused-but-set-variable -fpack-struct=8 -mcmodel=medany
> -mabi=lp64 -mno-relax
> > >  DEFINE GCC5_RISCV64_DLINK_FLAGS            =
> DEF(GCC5_RISCV_ALL_DLINK_FLAGS)
> -Wl,-melf64lriscv,--oformat=elf64-littleriscv,--no-relax
> > >  DEFINE GCC5_RISCV64_DLINK2_FLAGS           =
> DEF(GCC5_RISCV_ALL_DLINK2_FLAGS)
> > >  DEFINE GCC5_RISCV64_ASM_FLAGS              =
> DEF(GCC5_RISCV_ALL_ASM_FLAGS) -march=DEF(GCC5_RISCV64_ARCH)
> -mcmodel=medany -mabi=lp64
> > > --
> > > 2.34.1
> > >
> >
> >
> >
> >
> >
> 
> 
> 
> 




  reply	other threads:[~2023-06-25  1:08 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-02 17:02 [PATCH 1/1] BaseTools/tools_def: Add "-fno-unwind-tables" to GCC5_RISCV64_CC_FLAGS Sunil V L
2023-06-14 11:59 ` Sunil V L
     [not found] ` <176884B1D2310EB7.32355@groups.io>
2023-06-22  4:23   ` [edk2-devel] " Sunil V L
2023-06-25  1:06     ` gaoliming [this message]
2023-06-27 18:22       ` 回复: " Sunil V L
2023-06-24 16:05 ` Rebecca Cran

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-list 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='03a301d9a701$490bdb60$db239220$@byosoft.com.cn' \
    --to=devel@edk2.groups.io \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox