From nobody Sat Nov 2 12:20:03 2024 Delivered-To: importer@patchew.org Received-SPF: none (zoho.com: 198.145.21.10 is neither permitted nor denied by domain of lists.01.org) client-ip=198.145.21.10; envelope-from=edk2-devel-bounces@lists.01.org; helo=ml01.01.org; Authentication-Results: mx.zoho.com; spf=none (zoho.com: 198.145.21.10 is neither permitted nor denied by domain of lists.01.org) smtp.mailfrom=edk2-devel-bounces@lists.01.org; Return-Path: Received: from ml01.01.org (ml01.01.org [198.145.21.10]) by mx.zohomail.com with SMTPS id 1490979955324308.2524228314343; Fri, 31 Mar 2017 10:05:55 -0700 (PDT) Received: from [127.0.0.1] (localhost [IPv6:::1]) by ml01.01.org (Postfix) with ESMTP id 3321D20080330; Fri, 31 Mar 2017 10:05:49 -0700 (PDT) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 5A14021A0483A for ; Fri, 31 Mar 2017 10:05:47 -0700 (PDT) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 31 Mar 2017 10:05:45 -0700 Received: from shwde6388.ccr.corp.intel.com ([10.239.9.17]) by fmsmga004.fm.intel.com with ESMTP; 31 Mar 2017 10:05:43 -0700 X-Original-To: edk2-devel@lists.01.org DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=intel.com; i=@intel.com; q=dns/txt; s=intel; t=1490979947; x=1522515947; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=mrLv4DT8M7cHQiuq3txFaX5zkOe0B5rHatW0tZEr57g=; b=X0xL6lF106xxyuz3WjpBeKb6bvK1egQylzJRT6ohMpiSFuWODaeBSzaG 1eXEgTxhl4rGIb6TRiaHrtWcNpHGRg==; X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.36,252,1486454400"; d="scan'208";a="242519933" From: Qin Long To: edk2-devel@lists.01.org Date: Sat, 1 Apr 2017 01:05:15 +0800 Message-Id: <20170331170517.4672-3-qin.long@intel.com> X-Mailer: git-send-email 2.12.2.windows.1 In-Reply-To: <20170331170517.4672-1-qin.long@intel.com> References: <20170331170517.4672-1-qin.long@intel.com> Subject: [edk2] [Patch 2/4] CryptoPkg: Fix possible unresolved external symbol issue. X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: ting.ye@intel.com, hao.a.wu@intel.com, feng.tian@intel.com, lersek@redhat.com, eric.dong@intel.com MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Errors-To: edk2-devel-bounces@lists.01.org Sender: "edk2-devel" X-ZohoMail: RSF_4 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" The compiler (visual studio) may optimize some explicit strcmp call to use the intrinsic memcmp call. In CrtLibSupport.h, we just use #define to mapping memcmp to CompareMem API. So in Link phase, this kind of intrinsic optimization will cause the "unresolved external symbol" error. For example: OpensslLib.lib(v3_utl.obj) : error LNK2001: unresolved external symbol _memcmp This patch will keep the memcmp mapping, and provide extra Intrinsic memcmp wrapper to satisfy the symbol link. Cc: Ting Ye Cc: Feng Tian Cc: Laszlo Ersek Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Qin Long --- CryptoPkg/Include/CrtLibSupport.h | 1 + CryptoPkg/Library/IntrinsicLib/MemoryIntrinsics.c | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/CryptoPkg/Include/CrtLibSupport.h b/CryptoPkg/Include/CrtLibSu= pport.h index ddf7784a37..7f1ec12302 100644 --- a/CryptoPkg/Include/CrtLibSupport.h +++ b/CryptoPkg/Include/CrtLibSupport.h @@ -133,6 +133,7 @@ void *malloc (size_t); void *realloc (void *, size_t); void free (void *); void *memset (void *, int, size_t); +int memcmp (const void *, const void *, size_t); int isdigit (int); int isspace (int); int isxdigit (int); diff --git a/CryptoPkg/Library/IntrinsicLib/MemoryIntrinsics.c b/CryptoPkg/= Library/IntrinsicLib/MemoryIntrinsics.c index e8a76d07ff..33489aa6f4 100644 --- a/CryptoPkg/Library/IntrinsicLib/MemoryIntrinsics.c +++ b/CryptoPkg/Library/IntrinsicLib/MemoryIntrinsics.c @@ -46,6 +46,12 @@ void * memset (void *dest, char ch, unsigned int count) return dest; } =20 +/* Compare characters in two buffers. */ +int memcmp (const void *buf1, const void *buf2, unsigned int count) +{ + return (int)(CompareMem(buf1,buf2,(UINTN)(count))); +} + int strcmp (const char *s1, const char *s2) { return (int)AsciiStrCmp(s1, s2); --=20 2.12.2.windows.1 _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel