Support building on x64 hosts.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1095 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
bbahnsen
2006-07-25 21:08:04 +00:00
parent 4cb2253560
commit c7c42e4001
22 changed files with 53 additions and 24 deletions

View File

@@ -15,6 +15,15 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
<taskdef resource="net/sf/antcontrib/antlib.xml"/>
<property environment="env" />
<condition property="HostArch" value="x64">
<os arch="amd64"/>
</condition>
<condition property="HostArch" value="Ia32">
<os arch="x86"/>
</condition>
<condition property="HostArch" value="Ia32">
<os arch="i386"/>
</condition>
<property name="WORKSPACE" value="${env.WORKSPACE}" />
<property name="WORKSPACE_DIR" value="${WORKSPACE}" />
<property name="PACKAGE" value="Tools" />
@@ -79,6 +88,13 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
<os name="Linux"/>
</condition>
<condition property="x86_64_linux">
<and>
<os name="Linux"/>
<equals arg1="${HostArch}" arg2="x64"/>
</and>
</condition>
<condition property="windows" value="true">
<os family="Windows"/>
</condition>