mirror of
https://github.com/libretro/libretro-super
synced 2024-11-28 02:19:41 +00:00
(Android) Add Android MIPS64 script
This commit is contained in:
parent
8ced0c59b1
commit
4216d6b853
17
libretro-build-android-mips64.sh
Executable file
17
libretro-build-android-mips64.sh
Executable file
@ -0,0 +1,17 @@
|
||||
#! /usr/bin/env bash
|
||||
# vim: set ts=3 sw=3 noet ft=sh : bash
|
||||
|
||||
SCRIPT="${0#./}"
|
||||
BASE_DIR="${SCRIPT%/*}"
|
||||
WORKDIR="$PWD"
|
||||
|
||||
if [ "$BASE_DIR" = "$SCRIPT" ]; then
|
||||
BASE_DIR="$WORKDIR"
|
||||
else
|
||||
if [[ "$0" != /* ]]; then
|
||||
# Make the path absolute
|
||||
BASE_DIR="$WORKDIR/$BASE_DIR"
|
||||
fi
|
||||
fi
|
||||
|
||||
platform=android-mips64 ${BASE_DIR}/libretro-build.sh $@
|
@ -119,6 +119,34 @@ case "$platform" in
|
||||
CXX11="$NDK_ROOT_DIR/toolchains/mipsel-linux-android-4.8/prebuilt/${HOST_PLATFORM}-x86_64/bin/mipsel-linux-android-g++"
|
||||
;;
|
||||
|
||||
android-mips64)
|
||||
FORMAT_ABI="mips64"
|
||||
DIST_DIR="android/${FORMAT_ABI}"
|
||||
FORMAT_EXT=so
|
||||
FORMAT=.android_${FORMAT_ABI}
|
||||
FORMAT_COMPILER_TARGET=android-${FORMAT_ABI}
|
||||
FORMAT_COMPILER_TARGET_ALT=android-${FORMAT_ABI}
|
||||
FORMAT_ABI_ANDROID=yes
|
||||
UNAME_PLATFORM="$(uname)"
|
||||
HOST_PLATFORM="linux"
|
||||
|
||||
case "$UNAME_PLATFORM" in
|
||||
osx|*Darwin*)
|
||||
HOST_PLATFORM="darwin"
|
||||
;;
|
||||
win|*mingw32*|*MINGW32*|*MSYS_NT*)
|
||||
HOST_PLATFORM="windows"
|
||||
;;
|
||||
win64|*mingw64*|*MINGW64*)
|
||||
HOST_PLATFORM="windows"
|
||||
;;
|
||||
esac
|
||||
export NDK_ROOT_DIR
|
||||
CC="$NDK_ROOT_DIR/toolchains/mips64el-linux-android-4.9/prebuilt/${HOST_PLATFORM}-x86_64/bin/mips64el-linux-android-gcc"
|
||||
CXX="$NDK_ROOT_DIR/toolchains/mips64el-linux-android-4.9/prebuilt/${HOST_PLATFORM}-x86_64/bin/mips64el-linux-android-g++"
|
||||
CXX11="$NDK_ROOT_DIR/toolchains/mips64el-linux-android-4.9/prebuilt/${HOST_PLATFORM}-x86_64/bin/mips64el-linux-android-g++"
|
||||
;;
|
||||
|
||||
qnx)
|
||||
DIST_DIR="qnx"
|
||||
FORMAT_EXT=so
|
||||
@ -317,6 +345,12 @@ case "$platform" in
|
||||
FORMAT_COMPILER_TARGET="${platform}"
|
||||
DIST_DIR="android/mips"
|
||||
;;
|
||||
android-mips64)
|
||||
platform=android-mips64
|
||||
FORMAT_EXT="so"
|
||||
FORMAT_COMPILER_TARGET="${platform}"
|
||||
DIST_DIR="android/mips64"
|
||||
;;
|
||||
theos_ios*)
|
||||
platform=theos_ios
|
||||
FORMAT_EXT="dylib"
|
||||
|
Loading…
Reference in New Issue
Block a user