mirror of https://github.com/acidanthera/audk.git
BaseTools VfrCompile GNU makefile: Replace CXX with BUILD_CXX
The change is missing in VfrComile GNUmakefile. Cc: Giri P Mudusuru <giri.p.mudusuru@intel.com> Cc: Yonghong Zhu <yonghong.zhu@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Liming Gao <liming.gao@intel.com> Reviewed-by: Giri P Mudusuru <giri.p.mudusuru@intel.com> Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
This commit is contained in:
parent
b15153451c
commit
fa318476e4
|
@ -26,7 +26,7 @@ OBJECTS = AParser.o DLexerBase.o ATokenBuffer.o EfiVfrParser.o VfrLexer.o VfrSyn
|
|||
|
||||
VFR_CPPFLAGS = -DPCCTS_USE_NAMESPACE_STD $(BUILD_CPPFLAGS)
|
||||
|
||||
LINKER = $(CXX)
|
||||
LINKER = $(BUILD_CXX)
|
||||
|
||||
EXTRA_CLEAN_OBJECTS = EfiVfrParser.cpp EfiVfrParser.h VfrParser.dlg VfrTokens.h VfrLexer.cpp VfrLexer.h VfrSyntax.cpp tokens.h
|
||||
|
||||
|
@ -59,16 +59,16 @@ Pccts/dlg/dlg:
|
|||
BIN_DIR='.' $(MAKE) -C Pccts/dlg
|
||||
|
||||
ATokenBuffer.o: Pccts/h/ATokenBuffer.cpp
|
||||
$(CXX) -c $(VFR_CPPFLAGS) $(INC) $? -o $@
|
||||
$(BUILD_CXX) -c $(VFR_CPPFLAGS) $(INC) $? -o $@
|
||||
|
||||
DLexerBase.o: Pccts/h/DLexerBase.cpp
|
||||
$(CXX) -c $(VFR_CPPFLAGS) $(INC) $? -o $@
|
||||
$(BUILD_CXX) -c $(VFR_CPPFLAGS) $(INC) $? -o $@
|
||||
|
||||
AParser.o: Pccts/h/AParser.cpp
|
||||
$(CXX) -c $(VFR_CPPFLAGS) $(INC) $? -o $@
|
||||
$(BUILD_CXX) -c $(VFR_CPPFLAGS) $(INC) $? -o $@
|
||||
|
||||
VfrSyntax.o: VfrSyntax.cpp
|
||||
$(CXX) -c $(VFR_CPPFLAGS) $(INC) $? -o $@
|
||||
$(BUILD_CXX) -c $(VFR_CPPFLAGS) $(INC) $? -o $@
|
||||
|
||||
clean: localClean
|
||||
|
||||
|
|
Loading…
Reference in New Issue