diff options
author | bbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-25 21:08:04 +0000 |
---|---|---|
committer | bbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-25 21:08:04 +0000 |
commit | c7c42e40015a9e95631659aebd83fa1830c8602d (patch) | |
tree | cff7caf80fb56a055f5b941f989293d0ff9bc63a /Tools/Source/TianoTools/GenFvImage | |
parent | 4cb2253560c1e2609d9952881a16f116b67db649 (diff) | |
download | edk2-platforms-c7c42e40015a9e95631659aebd83fa1830c8602d.tar.xz |
Support building on x64 hosts.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1095 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools/Source/TianoTools/GenFvImage')
-rw-r--r-- | Tools/Source/TianoTools/GenFvImage/build.xml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Tools/Source/TianoTools/GenFvImage/build.xml b/Tools/Source/TianoTools/GenFvImage/build.xml index 15fbf7cb35..a320e8f3ed 100644 --- a/Tools/Source/TianoTools/GenFvImage/build.xml +++ b/Tools/Source/TianoTools/GenFvImage/build.xml @@ -87,6 +87,10 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. <os family="mac"/>
</condition>
+ <condition property="syslibdirs" value="/lib64">
+ <istrue value="${x86_64_linux}"/>
+ </condition>
+
<condition property="syslibdirs" value="${env.CYGWIN_HOME}/lib/e2fsprogs">
<os family="windows"/>
</condition>
@@ -123,7 +127,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. <includepath path="${PACKAGE_DIR}/${ToolName}"/>
<includepath path="${PACKAGE_DIR}/Include"/>
- <includepath path="${PACKAGE_DIR}/Include/Ia32"/>
+ <includepath path="${PACKAGE_DIR}/Include/${HostArch}"/>
<includepath path="${PACKAGE_DIR}/Common"/>
<libset dir="${LIB_DIR}" libs="CommonTools"/>
|