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/Common/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/Common/build.xml')
-rw-r--r-- | Tools/Source/TianoTools/Common/build.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/Source/TianoTools/Common/build.xml b/Tools/Source/TianoTools/Common/build.xml index 7802b27827..386698c3be 100644 --- a/Tools/Source/TianoTools/Common/build.xml +++ b/Tools/Source/TianoTools/Common/build.xml @@ -39,7 +39,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. outfile="${LIB_DIR}/CommonTools"
outtype="static"
optimize="speed">
- <compilerarg value="${ExtraArgus}" />
+ <compilerarg value="${ExtraArgus}" if="ExtraArgus" />
<compilerarg value="-fPIC" if="x86_64_linux"/>
<includepath path="${PACKAGE_DIR}/Include"/>
|