From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail05.groups.io (mail05.groups.io [45.79.224.7]) by spool.mail.gandi.net (Postfix) with ESMTPS id 448D5D806DA for ; Wed, 8 May 2024 08:52:06 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=WqkIox1wJNONkLTAxQIm2fhprmyl93nfZxy/VwxNb2M=; c=relaxed/simple; d=groups.io; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Resent-Date:Resent-From:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Transfer-Encoding; s=20240206; t=1715158324; v=1; b=r9Rpdt8dAZUcdF9uHi/g3+tAz0A/EBfNcxW/xQ4t/A4ge1eTS9+FpUZ2qmGELCTweiD5mXuL nMu4QmgWTDC/rHDDsHp0OmLJifAcFi75FP+2SNQ151kCFLLu6wRV0DPGHSCZkzN6r+LNzzQ4Qgz rM67ve97jLjB8NvZ+uEDH8vgDCD9koeJikRbSmzXEV/JgXFQ7IcINWqFyDsxM7e9WfMXEdry/cP fviq4Fz3YDySLGSjZhC62Ge95c//J73EKZg1rWDHE1txEE3cH0wS4cjaefMDOgkCpdf7gQq7XI5 K0AVOkByXtsaoCvv9Sfb+X3dYb1Kq8R1t4ZJOZKc/ICqw== X-Received: by 127.0.0.2 with SMTP id 6M3hYY7687511xbm8l4mZmsp; Wed, 08 May 2024 01:52:04 -0700 X-Received: from mail-lj1-f169.google.com (mail-lj1-f169.google.com [209.85.208.169]) by mx.groups.io with SMTP id smtpd.web10.7499.1715158323166276568 for ; Wed, 08 May 2024 01:52:03 -0700 X-Received: by mail-lj1-f169.google.com with SMTP id 38308e7fff4ca-2e3e18c23f9so30533741fa.3 for ; Wed, 08 May 2024 01:52:02 -0700 (PDT) X-Gm-Message-State: SEKp5FYTJQo6CtefJb3JvAL5x7686176AA= X-Google-Smtp-Source: AGHT+IG5/MEmOoxHfg7rrOOFV70lUz2hklay13MJD7H8dqC70crqBzkS/lcWmWfF6zxMA4Zb+aA1xw== X-Received: by 2002:a2e:9086:0:b0:2d8:e05f:633e with SMTP id 38308e7fff4ca-2e446d83c9dmr10944551fa.1.1715158320972; Wed, 08 May 2024 01:52:00 -0700 (PDT) X-Received: from localhost.localdomain (ip-84-203-13-9.broadband.digiweb.ie. [84.203.13.9]) by smtp.gmail.com with ESMTPSA id 5b1f17b1804b1-41f87c24f8fsm15285115e9.15.2024.05.08.01.52.00 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 08 May 2024 01:52:00 -0700 (PDT) From: "Pete Batard via groups.io" To: devel@edk2.groups.io Cc: quic_llindhol@quicinc.com, ardb+tianocore@kernel.org, michael.d.kinney@intel.com, gaoliming@byosoft.com.cn Subject: [edk2-devel] [PATCH 0/1] MdePkg/BaseLib: Fix undefined symbol when compiling with Visual Studio Date: Wed, 8 May 2024 09:51:46 +0100 Message-ID: <20240508085148.1725-1-pete@akeo.ie> MIME-Version: 1.0 Precedence: Bulk List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Resent-Date: Wed, 08 May 2024 01:52:03 -0700 Resent-From: pete@akeo.ie Reply-To: devel@edk2.groups.io,pete@akeo.ie List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: Content-Transfer-Encoding: quoted-printable X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20240206 header.b=r9Rpdt8d; spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 45.79.224.7 as permitted sender) smtp.mailfrom=bounce@groups.io; dmarc=pass (policy=none) header.from=groups.io The following patch fixes a regression/breakage that currently prevents=0D compilation of MdePkg for AARCH64 with Visual Studio 2022. This regression= =0D was introduced with the patch that was discussed in October 2020 at:=0D https://edk2.groups.io/g/devel/topic/77247140#msg65813 and that was=0D eventually integrated in September 2023.=0D =0D The full error can be seen on a real life example at:=0D https://github.com/pbatard/EfiFs/actions/runs/8988513468/job/24689531001#st= ep:8:220=0D =0D Because this is a regression/breakage for one of the major toolchains, and= =0D the fix is expected to be low impact, I would appreciate if this could be=0D speed-tracked for review and integration for the 202405 edk2 release, which= =0D is currently in soft freeze.=0D =0D Also, since this appears not to be the case, and it would have helped with= =0D this issue being caught during patch integration rather than 6 months down= =0D the line, I would also very much like to push for a VS2019/AARCH64 CI=0D pipeline to be added to the edk2 patch validation process.=0D =0D Thanks,=0D =0D /Pete=0D =0D Pete Batard (1):=0D MdePkg/BaseLib: Fix undefined symbol when compiling with Visual Studio=0D =0D MdePkg/Library/BaseLib/AArch64/SetJumpLongJump.asm | 1 +=0D 1 file changed, 1 insertion(+)=0D =0D --=0D 2.45.0.windows.1=0D =0D -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#118665): https://edk2.groups.io/g/devel/message/118665 Mute This Topic: https://groups.io/mt/105977469/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-