88 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
set -e -o pipefail
 | 
						|
 | 
						|
ANDROID_ABI=$1
 | 
						|
 | 
						|
# Build RustDesk dependencies for Android using vcpkg.json
 | 
						|
# Required:
 | 
						|
#   1. set VCPKG_ROOT / ANDROID_NDK path environment variables
 | 
						|
#   2. vcpkg initialized
 | 
						|
#   3. ndk, version: r25c or newer
 | 
						|
 | 
						|
if [ -z "$ANDROID_NDK_HOME" ]; then
 | 
						|
  echo "Failed! Please set ANDROID_NDK_HOME"
 | 
						|
  exit 1
 | 
						|
fi
 | 
						|
 | 
						|
if [ -z "$VCPKG_ROOT" ]; then
 | 
						|
  echo "Failed! Please set VCPKG_ROOT"
 | 
						|
  exit 1
 | 
						|
fi
 | 
						|
 | 
						|
API_LEVEL="21"
 | 
						|
 | 
						|
# Get directory of this script
 | 
						|
 | 
						|
SCRIPTDIR="$(readlink -f "$0")"
 | 
						|
SCRIPTDIR="$(dirname "$SCRIPTDIR")"
 | 
						|
 | 
						|
# Check if vcpkg.json is one level up - in root directory of RD
 | 
						|
 | 
						|
if [ ! -f "$SCRIPTDIR/../vcpkg.json" ]; then
 | 
						|
  echo "Failed! Please check where vcpkg.json is!"
 | 
						|
  exit 1
 | 
						|
fi
 | 
						|
 | 
						|
# NDK llvm toolchain
 | 
						|
 | 
						|
HOST_TAG="linux-x86_64" # current platform, set as `ls $ANDROID_NDK/toolchains/llvm/prebuilt/`
 | 
						|
TOOLCHAIN=$ANDROID_NDK/toolchains/llvm/prebuilt/$HOST_TAG
 | 
						|
 | 
						|
function build {
 | 
						|
  ANDROID_ABI=$1
 | 
						|
 | 
						|
  case "$ANDROID_ABI" in
 | 
						|
  arm64-v8a)
 | 
						|
     ABI=aarch64-linux-android$API_LEVEL
 | 
						|
     VCPKG_TARGET=arm64-android
 | 
						|
     ;;
 | 
						|
  armeabi-v7a)
 | 
						|
     ABI=armv7a-linux-androideabi$API_LEVEL
 | 
						|
     VCPKG_TARGET=arm-neon-android
 | 
						|
     ;;
 | 
						|
  x86_64)
 | 
						|
     ABI=x86_64-linux-android$API_LEVEL
 | 
						|
     VCPKG_TARGET=x64-android
 | 
						|
     ;;
 | 
						|
  x86)
 | 
						|
     ABI=i686-linux-android$API_LEVEL
 | 
						|
     VCPKG_TARGET=x86-android
 | 
						|
     ;;
 | 
						|
  *)
 | 
						|
     echo "ERROR: ANDROID_ABI must be one of: arm64-v8a, armeabi-v7a, x86_64, x86" >&2
 | 
						|
     return 1
 | 
						|
  esac
 | 
						|
 | 
						|
  echo "*** [$ANDROID_ABI][Start] Build and install vcpkg dependencies"
 | 
						|
  pushd "$SCRIPTDIR/.."
 | 
						|
  $VCPKG_ROOT/vcpkg install --triplet $VCPKG_TARGET --x-install-root="$VCPKG_ROOT/installed"
 | 
						|
  popd
 | 
						|
  echo "*** [$ANDROID_ABI][Finished] Build and install vcpkg dependencies"
 | 
						|
 | 
						|
if [ -d "$VCPKG_ROOT/installed/arm-neon-android" ]; then
 | 
						|
  echo "*** [Start] Move arm-neon-android to arm-android"
 | 
						|
 | 
						|
  mv "$VCPKG_ROOT/installed/arm-neon-android" "$VCPKG_ROOT/installed/arm-android"
 | 
						|
 | 
						|
  echo "*** [Finished] Move arm-neon-android to arm-android"
 | 
						|
fi
 | 
						|
}
 | 
						|
 | 
						|
if [ ! -z "$ANDROID_ABI" ]; then
 | 
						|
  build "$ANDROID_ABI"
 | 
						|
else
 | 
						|
  echo "Usage: build-android-deps.sh <ANDROID-ABI>" >&2
 | 
						|
  exit 1
 | 
						|
fi
 |