|
|
cc9195 |
From c8f78f5ef3463ffb63d26879d858327aba934d12 Mon Sep 17 00:00:00 2001
|
|
|
cc9195 |
From: Laszlo Ersek <lersek@redhat.com>
|
|
|
cc9195 |
Date: Wed, 29 Aug 2018 17:12:01 +0200
|
|
|
cc9195 |
Subject: [PATCH 4/7] BaseTools/Source/C: take EXTRA_OPTFLAGS from the caller
|
|
|
cc9195 |
|
|
|
cc9195 |
Message-id: <20180829151204.26958-5-lersek@redhat.com>
|
|
|
cc9195 |
Patchwork-id: 81966
|
|
|
cc9195 |
O-Subject: [RHEL8/virt212 edk2 PATCH 4/7] BaseTools/Source/C: take
|
|
|
cc9195 |
EXTRA_OPTFLAGS from the caller
|
|
|
cc9195 |
Bugzilla: 1607906
|
|
|
cc9195 |
Acked-by: Thomas Huth <thuth@redhat.com>
|
|
|
cc9195 |
Acked-by: Vitaly Kuznetsov <vkuznets@redhat.com>
|
|
|
cc9195 |
|
|
|
cc9195 |
Allow the caller of the top-level makefile either to set EXTRA_OPTFLAGS in
|
|
|
cc9195 |
the environment or to pass EXTRA_OPTFLAGS as a macro definition on the
|
|
|
cc9195 |
command line. EXTRA_OPTFLAGS extends (and potentially overrides) default C
|
|
|
cc9195 |
compilation flags set in the makefiles.
|
|
|
cc9195 |
|
|
|
cc9195 |
Cc: Liming Gao <liming.gao@intel.com>
|
|
|
cc9195 |
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
|
|
|
cc9195 |
Ref: https://bugzilla.redhat.com/show_bug.cgi?id=1540244
|
|
|
cc9195 |
Contributed-under: TianoCore Contribution Agreement 1.1
|
|
|
cc9195 |
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
|
|
|
cc9195 |
Reviewed-by: Liming Gao <liming.gao@intel.com>
|
|
|
cc9195 |
(cherry picked from commit b0ca5dae78ff71397a8ef568f1914da7668ff5a9)
|
|
|
cc9195 |
---
|
|
|
cc9195 |
BaseTools/Source/C/Makefiles/header.makefile | 5 ++++-
|
|
|
cc9195 |
1 file changed, 4 insertions(+), 1 deletion(-)
|
|
|
cc9195 |
|
|
|
cc9195 |
diff --git a/BaseTools/Source/C/Makefiles/header.makefile b/BaseTools/Source/C/Makefiles/header.makefile
|
|
|
cc9195 |
index 498c6cf..1b4cad5 100644
|
|
|
cc9195 |
--- a/BaseTools/Source/C/Makefiles/header.makefile
|
|
|
cc9195 |
+++ b/BaseTools/Source/C/Makefiles/header.makefile
|
|
|
cc9195 |
@@ -69,7 +69,10 @@ endif
|
|
|
cc9195 |
|
|
|
cc9195 |
INCLUDE = $(TOOL_INCLUDE) -I $(MAKEROOT) -I $(MAKEROOT)/Include/Common -I $(MAKEROOT)/Include/ -I $(MAKEROOT)/Include/IndustryStandard -I $(MAKEROOT)/Common/ -I .. -I . $(ARCH_INCLUDE)
|
|
|
cc9195 |
BUILD_CPPFLAGS = $(INCLUDE)
|
|
|
cc9195 |
-BUILD_OPTFLAGS = -O2
|
|
|
cc9195 |
+
|
|
|
cc9195 |
+# keep EXTRA_OPTFLAGS last
|
|
|
cc9195 |
+BUILD_OPTFLAGS = -O2 $(EXTRA_OPTFLAGS)
|
|
|
cc9195 |
+
|
|
|
cc9195 |
ifeq ($(DARWIN),Darwin)
|
|
|
cc9195 |
# assume clang or clang compatible flags on OS X
|
|
|
cc9195 |
BUILD_CFLAGS = -MD -fshort-wchar -fno-strict-aliasing -Wall -Werror -Wno-deprecated-declarations -Wno-self-assign -Wno-unused-result -nostdlib -g
|
|
|
cc9195 |
--
|
|
|
cc9195 |
1.8.3.1
|
|
|
cc9195 |
|