diff options
author | Sven Gothel <[email protected]> | 2020-01-01 23:38:30 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2020-01-01 23:38:30 +0100 |
commit | 7856ab9d24e21346b0e3e403d04aca3070ab16d2 (patch) | |
tree | 76a72feda78c45dc2fa56cd537ce2ddc2b9f41dc | |
parent | 4de730cae5245d593275bcac02c3e67708d78c01 (diff) |
make/lib/gluegen-cpptasks* set 'is64Bit' where appropriate (no impact, but added for correctness)
-rw-r--r-- | make/lib/gluegen-cpptasks-android-aarch64.xml | 1 | ||||
-rw-r--r-- | make/lib/gluegen-cpptasks-linux-aarch64-ontarget.xml | 1 | ||||
-rw-r--r-- | make/lib/gluegen-cpptasks-linux-aarch64.xml | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/make/lib/gluegen-cpptasks-android-aarch64.xml b/make/lib/gluegen-cpptasks-android-aarch64.xml index 7248d7a..37ba226 100644 --- a/make/lib/gluegen-cpptasks-android-aarch64.xml +++ b/make/lib/gluegen-cpptasks-android-aarch64.xml @@ -18,6 +18,7 @@ <!-- Set OS and ARCH for crosscompilation compiler configuration --> <target name="gluegen.cpptasks.detect.os.custom"> <property name="gluegen.cpptasks.detected.os" value="true" /> + <property name="is64Bit" value="true" /> <property name="isUnix" value="true" /> <property name="isAndroid" value="true" /> <property name="isAndroidARM64" value="true" /> diff --git a/make/lib/gluegen-cpptasks-linux-aarch64-ontarget.xml b/make/lib/gluegen-cpptasks-linux-aarch64-ontarget.xml index 57af368..e2e52fd 100644 --- a/make/lib/gluegen-cpptasks-linux-aarch64-ontarget.xml +++ b/make/lib/gluegen-cpptasks-linux-aarch64-ontarget.xml @@ -18,6 +18,7 @@ <!-- Set OS and ARCH for crosscompilation compiler configuration --> <target name="gluegen.cpptasks.detect.os.custom"> <property name="gluegen.cpptasks.detected.os" value="true" /> + <property name="is64Bit" value="true" /> <property name="isUnix" value="true" /> <property name="isLinux" value="true" /> <property name="isLinuxARM64" value="true" /> diff --git a/make/lib/gluegen-cpptasks-linux-aarch64.xml b/make/lib/gluegen-cpptasks-linux-aarch64.xml index 472f81a..410589d 100644 --- a/make/lib/gluegen-cpptasks-linux-aarch64.xml +++ b/make/lib/gluegen-cpptasks-linux-aarch64.xml @@ -18,6 +18,7 @@ <!-- Set OS and ARCH for crosscompilation compiler configuration --> <target name="gluegen.cpptasks.detect.os.custom"> <property name="gluegen.cpptasks.detected.os" value="true" /> + <property name="is64Bit" value="true" /> <property name="isUnix" value="true" /> <property name="isLinux" value="true" /> <property name="isLinuxARM64" value="true" /> |