From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) (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 48BDC21942326 for ; Thu, 6 Apr 2017 01:16:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=intel.com; i=@intel.com; q=dns/txt; s=intel; t=1491466588; x=1523002588; h=from:to:cc:subject:date:message-id; bh=oy1O2ivWDiu/YtWcioEk957M6vvjGtGo6xs0fcT15Yg=; b=Zv8Z/5XToGoaQLMPoSkcIrn0WiKCOcRDn9sqvd7a2+ujU1cxN1jTUJ4Q AOWWuTXRQ9u0ufwuBxfYIb+oQY1xBQ==; Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 06 Apr 2017 01:16:27 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.37,283,1488873600"; d="scan'208";a="244969889" Received: from shwde7172.ccr.corp.intel.com ([10.239.9.14]) by fmsmga004.fm.intel.com with ESMTP; 06 Apr 2017 01:16:27 -0700 From: Liming Gao To: edk2-devel@lists.01.org Cc: Qin Long Date: Thu, 6 Apr 2017 16:16:25 +0800 Message-Id: <1491466585-10728-1-git-send-email-liming.gao@intel.com> X-Mailer: git-send-email 2.8.0.windows.1 Subject: [Patch] CryptoPkg IntrinsicLib: Remove GCC -fno-builtin option 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: Thu, 06 Apr 2017 08:16:28 -0000 GCC -fno-builtin option is added into tools_def.template. So, there is no need to set it in module INF file. Cc: Qin Long Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Liming Gao --- CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf b/CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf index cd09f53..91e5eb7 100644 --- a/CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf +++ b/CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf @@ -1,7 +1,7 @@ ## @file # Intrinsic Routines Wrapper Library Instance. # -# Copyright (c) 2010 - 2016, Intel Corporation. All rights reserved.
+# Copyright (c) 2010 - 2017, Intel Corporation. All rights reserved.
# This program and the accompanying materials # are licensed and made available under the terms and conditions of the BSD License # which accompanies this distribution. The full text of the license may be found at @@ -81,4 +81,3 @@ MSFT:DEBUG_*_IPF_CC_FLAGS == /nologo /c /WX /GS- /X /W4 /EHs-c- /GR- /Gy /Os /FIAutoGen.h /QIPF_fr32 /Zi MSFT:RELEASE_*_IPF_CC_FLAGS == /nologo /c /WX /GS- /X /W4 /EHs-c- /GR- /Gy /Os /FIAutoGen.h /QIPF_fr32 INTEL:*_*_*_CC_FLAGS = /Oi- - GCC:*_*_*_CC_FLAGS = -fno-builtin \ No newline at end of file -- 2.8.0.windows.1