]> git.proxmox.com Git - mirror_edk2.git/commitdiff
BaseTools/Source/C: take EXTRA_OPTFLAGS from the caller
authorLaszlo Ersek <lersek@redhat.com>
Wed, 25 Jul 2018 22:04:26 +0000 (00:04 +0200)
committerLaszlo Ersek <lersek@redhat.com>
Thu, 16 Aug 2018 18:18:49 +0000 (20:18 +0200)
Allow the caller of the top-level makefile either to set EXTRA_OPTFLAGS in
the environment or to pass EXTRA_OPTFLAGS as a macro definition on the
command line. EXTRA_OPTFLAGS extends (and potentially overrides) default C
compilation flags set in the makefiles.

Cc: Liming Gao <liming.gao@intel.com>
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Ref: https://bugzilla.redhat.com/show_bug.cgi?id=1540244
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
BaseTools/Source/C/Makefiles/header.makefile

index 498c6cf48b4a42fcd19dc52a5513e81934f0f880..1b4cad5497ecee87cfddc6dcc099051e39560a3f 100644 (file)
@@ -69,7 +69,10 @@ endif
 \r
 INCLUDE = $(TOOL_INCLUDE) -I $(MAKEROOT) -I $(MAKEROOT)/Include/Common -I $(MAKEROOT)/Include/ -I $(MAKEROOT)/Include/IndustryStandard -I $(MAKEROOT)/Common/ -I .. -I . $(ARCH_INCLUDE) \r
 BUILD_CPPFLAGS = $(INCLUDE)\r
-BUILD_OPTFLAGS = -O2\r
+\r
+# keep EXTRA_OPTFLAGS last\r
+BUILD_OPTFLAGS = -O2 $(EXTRA_OPTFLAGS)\r
+\r
 ifeq ($(DARWIN),Darwin)\r
 # assume clang or clang compatible flags on OS X\r
 BUILD_CFLAGS = -MD -fshort-wchar -fno-strict-aliasing -Wall -Werror -Wno-deprecated-declarations -Wno-self-assign -Wno-unused-result -nostdlib -g\r