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 B6BEE7803D9 for ; Wed, 8 May 2024 08:52:06 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=hzMB15Kt+JXdCcP1h5Idl1QzL4HSy8cqRnbkeypR10s=; c=relaxed/simple; d=groups.io; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: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=1715158325; v=1; b=LLXB5Cvj/Gh4ZAoLJxK6es6qpcQVWPLcFZEkzILITKWvvy4r/gL49YWRqaWKdyHI0cFGADCL nGmaJCSORk28eh1k1Qgk+legoFMBjbu7gRld7X2x5To+RcmzzzNjVxPTOotx06TAac+O/kDC7u/ EUAVNGU7SukaHnfhk0Cbwyvm+Fm4Ev863RHeysHiXMJbC/ajnQvEr0JcigzIdtyqBaUoui6u61Z xDYl8aWWUa2Lk3tuzn/NGb7SK1/UOXhV1pBHNw4+I9x062fsZfuavICcXnAmYqMI4sS2I1EmyZJ zVq6yO0Pel0rUDLyNoAOaJKTG/W0H0LKW2HsDK5+cG/UA== X-Received: by 127.0.0.2 with SMTP id OF0lYY7687511xl7Ax7on4Vp; Wed, 08 May 2024 01:52:05 -0700 X-Received: from mail-wm1-f50.google.com (mail-wm1-f50.google.com [209.85.128.50]) by mx.groups.io with SMTP id smtpd.web10.7500.1715158323366118325 for ; Wed, 08 May 2024 01:52:03 -0700 X-Received: by mail-wm1-f50.google.com with SMTP id 5b1f17b1804b1-41ba1ba5592so27594435e9.1 for ; Wed, 08 May 2024 01:52:03 -0700 (PDT) X-Gm-Message-State: sSkbHGUHfM2fFA5mdiV5OAoRx7686176AA= X-Google-Smtp-Source: AGHT+IHOX326aN+XrGT9TrOJb0L7Uicac6t2aoUi3KCuNQoaE76m8hQBi+RxlY7ZsfxghOdkdiOnqg== X-Received: by 2002:a7b:c44d:0:b0:418:d2c5:5c65 with SMTP id 5b1f17b1804b1-41f72593c25mr23445185e9.37.1715158321706; Wed, 08 May 2024 01:52:01 -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.01 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 08 May 2024 01:52:01 -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 1/1] MdePkg/BaseLib: Fix undefined symbol when compiling with Visual Studio Date: Wed, 8 May 2024 09:51:47 +0100 Message-ID: <20240508085148.1725-2-pete@akeo.ie> In-Reply-To: <20240508085148.1725-1-pete@akeo.ie> References: <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:04 -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=LLXB5Cvj; dmarc=pass (policy=none) header.from=groups.io; spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 45.79.224.7 as permitted sender) smtp.mailfrom=bounce@groups.io Commit 80bbea192aa44ab664ba8be29ac06c83f246e99c introduced a regression resulting in 'error A2023: undefined symbol: InternalAssertJumpBuffer' when compling MdePkg for AARCH64 with Visual Studio. Fix this by adding the relevant EXTERN reference. Signed-off-by: Pete Batard Cc: Leif Lindholm Cc: Ard Biesheuvel --- MdePkg/Library/BaseLib/AArch64/SetJumpLongJump.asm | 1 + 1 file changed, 1 insertion(+) diff --git a/MdePkg/Library/BaseLib/AArch64/SetJumpLongJump.asm b/MdePkg/Li= brary/BaseLib/AArch64/SetJumpLongJump.asm index 6ec8f35f2c9f..fa161e25f517 100644 --- a/MdePkg/Library/BaseLib/AArch64/SetJumpLongJump.asm +++ b/MdePkg/Library/BaseLib/AArch64/SetJumpLongJump.asm @@ -7,6 +7,7 @@ =0D EXPORT SetJump=0D EXPORT InternalLongJump=0D + EXTERN InternalAssertJumpBuffer=0D AREA BaseLib_LowLevel, CODE, READONLY=0D =0D #define GPR_LAYOUT \=0D --=20 2.45.0.windows.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#118666): https://edk2.groups.io/g/devel/message/118666 Mute This Topic: https://groups.io/mt/105977470/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-