diff options
author | wuyizhong <wuyizhong@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-08-09 03:14:51 +0000 |
---|---|---|
committer | wuyizhong <wuyizhong@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-08-09 03:14:51 +0000 |
commit | 205437772a146f6a7c87a010234e771169e50bdb (patch) | |
tree | 64268c4233cf882a87c260e29524977c1f6c9dfa /Tools/Source/TianoTools/FlashMap/build.xml | |
parent | caf9538f28de46e9ab3712611688e5353402183d (diff) | |
download | edk2-platforms-205437772a146f6a7c87a010234e771169e50bdb.tar.xz |
Set different arguments for gcc3.x.x and gcc4.x.x. Suppress pointer-sign warning in gcc4.x.x.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1221 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools/Source/TianoTools/FlashMap/build.xml')
-rw-r--r-- | Tools/Source/TianoTools/FlashMap/build.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Tools/Source/TianoTools/FlashMap/build.xml b/Tools/Source/TianoTools/FlashMap/build.xml index e0e4fcc3a8..3001485c9a 100644 --- a/Tools/Source/TianoTools/FlashMap/build.xml +++ b/Tools/Source/TianoTools/FlashMap/build.xml @@ -38,7 +38,8 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. outfile="${BIN_DIR}/${ToolName}"
outtype="executable"
debug="false">
- <compilerarg value="${ExtraArgus}" />
+ <compilerarg value="${ExtraArgus}" if="ExtraArgus" />
+
<defineset>
<define name="_malloc" value="malloc"/>
<define name="_free" value="free"/>
|