From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 4A0CB21A04826 for ; Fri, 31 Mar 2017 10:05:47 -0700 (PDT) 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; bh=Dgu7wfQqGMuIRpBWYBcPsTpXnF+mFIaCbWccIDrnk50=; b=i3F2oUFW07g6UebqFNfzQrkOfnmK/eQrnKqzIjIN2nVAsOJdxzjzaklG HrmicpL8tv4agCQA1F7SFKVZJcioeg==; 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 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.36,252,1486454400"; d="scan'208";a="242519922" Received: from shwde6388.ccr.corp.intel.com ([10.239.9.17]) by fmsmga004.fm.intel.com with ESMTP; 31 Mar 2017 10:05:40 -0700 From: Qin Long To: edk2-devel@lists.01.org Cc: ting.ye@intel.com, lersek@redhat.com, hao.a.wu@intel.com, feng.tian@intel.com, eric.dong@intel.com Date: Sat, 1 Apr 2017 01:05:13 +0800 Message-Id: <20170331170517.4672-1-qin.long@intel.com> X-Mailer: git-send-email 2.12.2.windows.1 Subject: [Patch 0/4] *** Resolving CryptoPkg build issues *** 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: , X-List-Received-Date: Fri, 31 Mar 2017 17:05:47 -0000 This patch series introduced some hotfixes and workaround to resolve the build issues under different toolchain, and from potential external consumers, including: - build warning under GCC48 and VS2010 toolchain; - Potential unresolved external symbol link issue; - One bug fix of timer() wrapper in ConstantTimeClock.c; - One workaround to resolve macro re-definitions issue from some external BaseCryptLib consumer. (https://github.com/qloong/edk2/commits/dev-openssl-hotfix) Qin Long (4): CryptoPkg/OpensslLib: Suppress extra build warnings in openssl source CryptoPkg: Fix possible unresolved external symbol issue. CryptoPkg/BaseCryptLib: Adding NULL checking in timer() wrapper. CryptoPkg: One workaround to resolve potential build issue. CryptoPkg/Include/CrtLibSupport.h | 1 + CryptoPkg/Include/openssl/e_os2.h | 315 +++++++++++++++++++++ .../BaseCryptLib/SysCall/ConstantTimeClock.c | 6 +- CryptoPkg/Library/IntrinsicLib/MemoryIntrinsics.c | 6 + CryptoPkg/Library/OpensslLib/OpensslLib.inf | 15 +- CryptoPkg/Library/OpensslLib/OpensslLibCrypto.inf | 15 +- 6 files changed, 346 insertions(+), 12 deletions(-) create mode 100644 CryptoPkg/Include/openssl/e_os2.h -- 2.12.2.windows.1