forked from radareorg/radare2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathandroid-shell.sh
executable file
·125 lines (120 loc) · 2.36 KB
/
android-shell.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#!/bin/sh
# android shell
if [ -n "$1" ]; then
NDK_ARCH="$1"
shift
fi
export ANDROID=1
ARCH=${NDK_ARCH}
case "${NDK_ARCH}" in
mips64)
export NDK_ARCH
AR=mips64el-linux-android-ar
RANLIB=mips64el-linux-android-ranlib
;;
mips)
export NDK_ARCH
AR=mipsel-linux-android-ar
RANLIB=mipsel-linux-android-ranlib
;;
x64)
NDK_ARCH=x86_64
export NDK_ARCH
;;
x86|x86_64)
export NDK_ARCH
;;
aarch64|arm64)
NDK_ARCH=aarch64
export NDK_ARCH
AR=aarch64-linux-android-ar
ARCH=arm64
RANLIB=aarch64-linux-android-ranlib
;;
arm)
export NDK_ARCH
AR=arm-linux-androideabi-ar
RANLIB=arm-linux-androideabi-ranlib
;;
local)
export ANDROID=1
;;
*)
echo "Usage: $0 [arm64|arm|mips|mips64|x86|x64]"
exit 1
;;
esac
LANG=C
export LANG
ROOT=`dirname $0`
OS=`uname|tr 'A-Z' 'a-z'`
[ "${OS}" = macosx ] && OS=darwin
if [ ! -x /work ]; then
echo "Building android locally with NDK instead of dockcross..."
# TODO: autodetect or gtfo
if [ -f ~/.r2androidrc ]; then
. ~/.r2androidrc
echo "Using data from ${HOME}/.r2androidrc.."
else
#[ -z "${SDK}" ] && SDK="${HOME}/Downloads/android-sdk-${OS}"
if [ -z "${NDK}" ]; then
# Checking if Android NDK is installed with macOS's brew
D=/usr/local/Caskroom/android-ndk/
if [ -d "${D}" ]; then
for a in $(cd "$D" && ls) ; do
N="$D/$a/android-ndk-r$a"
if [ -f "$N/README.md" ]; then
NDK="$N"
break
fi
done
fi
fi
if [ -z "${NDK}" ]; then
if [ "`uname`" = "Darwin" ]; then
NDK="${HOME}/Library/Android/sdk/ndk-bundle/"
else
NDK="${HOME}/Downloads/android-ndk-r7b"
fi
fi
[ -z "${NDK}" ] && NDK="${HOME}/Downloads/android-ndk-r7b"
fi
fi
echo ROOT=$ROOT
echo NDK=$NDK
echo NDK_ARCH=$NDK_ARCH
echo "Building the standalone NDK toolchain..."
${NDK}/build/tools/make_standalone_toolchain.py --arch=${ARCH} --install-dir=/tmp/ndk/ --api=28 --force
(
cd /tmp/ndk/bin/ && \
ln -fs clang ndk-gcc && \
ln -fs clang++ ndk-g++
)
if [ "${BUILD}" != 0 ]; then
if [ ! -d "${NDK}" ]; then
echo "Cannot find Android NDK ${NDK}" >&2
echo "echo NDK=/path/to/ndk > ~/.r2androidrc" >&2
exit 1
fi
PATH=/tmp/ndk/bin:$PATH
export PATH
export CFLAGS
export NDK
export NDK_ARCH
[ -z "${SHELL}" ] && SHELL=sh
SHELL=sh
CC=ndk-gcc
CXX=ndk-g++
PS1="[r2-android-${NDK_ARCH}]> "
export CC
export CXX
export PS1
export AR
export RANLIB
A=$@
if [ -n "$A" ]; then
${SHELL} -c "$A"
else
${SHELL}
fi
fi