diff options
author | yshang1 <yshang1@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-05-16 11:12:51 +0000 |
---|---|---|
committer | yshang1 <yshang1@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-05-16 11:12:51 +0000 |
commit | 0a022784702d36082d4a8583352608e6aa0b9ba8 (patch) | |
tree | d72391cca56cc1ce237cd0fb6c540a0493fa255b /Tools | |
parent | 24de7645e857287d096b058f7a64fb7f618c0194 (diff) | |
download | edk2-platforms-0a022784702d36082d4a8583352608e6aa0b9ba8.tar.xz |
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@173 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/Source/TianoTools/VfrCompile/build.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/Source/TianoTools/VfrCompile/build.xml b/Tools/Source/TianoTools/VfrCompile/build.xml index 690d10ab8e..9c0ab7290e 100644 --- a/Tools/Source/TianoTools/VfrCompile/build.xml +++ b/Tools/Source/TianoTools/VfrCompile/build.xml @@ -111,7 +111,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. </target>
<target name="Tool" depends="init, Dlg">
- <cc name="g++" objdir="${BUILD_DIR}"
+ <cc name="${ToolChain}" objdir="${BUILD_DIR}"
outfile="${BIN_DIR}/${ToolName}"
outtype="executable"
optimize="speed">
@@ -129,7 +129,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. <includepath path="${env.WORKSPACE}/MdePkg/Include/Protocol"/>
<includepath path="${PACKAGE_DIR}/Common"/>
<libset dir="${LIB_DIR}" libs="CommonTools"/>
- <syslibset libs="${gxx_extra_libs}" if="gcc"/>
+ <syslibset libs="${gxx_extra_libs}" if="g++"/>
</cc>
</target>
|