mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-03-29 00:25:52 +01:00
Linux: changed uname -i to uname -m to improve 64 bit detection in build script
This commit is contained in:
parent
145f00031a
commit
08e94f8a7b
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
<target name="compile">
|
||||
<exec executable="uname" outputproperty="hwplatform">
|
||||
<arg value="-i"/>
|
||||
<arg value="-m"/>
|
||||
</exec>
|
||||
<condition property="libs" value="${libs64}" else="${libs32}">
|
||||
<equals arg1="${hwplatform}" arg2="x86_64"/>
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
<target name="compile">
|
||||
<exec executable="uname" outputproperty="hwplatform">
|
||||
<arg value="-i"/>
|
||||
<arg value="-m"/>
|
||||
</exec>
|
||||
<condition property="libs" value="${libs64}" else="${libs32}">
|
||||
<equals arg1="${hwplatform}" arg2="x86_64"/>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
<target name="compile">
|
||||
<exec executable="uname" outputproperty="hwplatform">
|
||||
<arg value="-i"/>
|
||||
<arg value="-m"/>
|
||||
</exec>
|
||||
<condition property="libs" value="${libs64}" else="${libs32}">
|
||||
<equals arg1="${hwplatform}" arg2="x86_64"/>
|
||||
|
|
|
|||
Loading…
Reference in a new issue