mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
android-build: Add support for x86_64
This adds support for building x86_64 apks. Signed-off-by: Anton Lundin <glance@acc.umu.se>
This commit is contained in:
parent
dbdfb9b517
commit
43cd80dfc1
1 changed files with 6 additions and 1 deletions
|
@ -63,7 +63,7 @@ while [ "$#" -gt 0 ] ; do
|
||||||
SUBSURFACE_DESKTOP=ON
|
SUBSURFACE_DESKTOP=ON
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
arm|arm64|x86)
|
arm|arm64|x86|x86_64)
|
||||||
ARCH=$1
|
ARCH=$1
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
|
@ -129,6 +129,11 @@ elif [ "$ARCH" = "x86" ] ; then
|
||||||
BUILDCHAIN=i686-linux-android
|
BUILDCHAIN=i686-linux-android
|
||||||
OPENSSL_MACHINE=i686
|
OPENSSL_MACHINE=i686
|
||||||
ANDROID_ABI=x86
|
ANDROID_ABI=x86
|
||||||
|
elif [ "$ARCH" = "x86_64" ] ; then
|
||||||
|
QT_ARCH=$ARCH
|
||||||
|
BUILDCHAIN=x86_64-linux-android
|
||||||
|
OPENSSL_MACHINE=$ARCH
|
||||||
|
ANDROID_ABI=$ARCH
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Verify Qt install and adjust for single-arch Qt install layout
|
# Verify Qt install and adjust for single-arch Qt install layout
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue