2021-08-31 09:27:30 +00:00
|
|
|
#!/bin/sh
|
2021-03-16 18:18:54 +00:00
|
|
|
|
2021-08-31 09:27:30 +00:00
|
|
|
. ./config.sh
|
2021-12-29 21:50:33 +00:00
|
|
|
TOOLCHAIN_DIR=${WORKDIR}/toolchain
|
|
|
|
TOOLCHAIN_A32_DIR=${TOOLCHAIN_DIR}_aarch
|
|
|
|
TOOLCHAIN_A64_DIR=${TOOLCHAIN_DIR}_aarch64
|
|
|
|
TOOLCHAIN_x86_DIR=${TOOLCHAIN_DIR}_i686
|
|
|
|
TOOLCHAIN_x86_64_DIR=${TOOLCHAIN_DIR}_x86_64
|
2021-12-29 20:12:54 +00:00
|
|
|
ANDROID_NDK_SHA256="3f541adbd0330a9205ba12697f6d04ec90752c53d6b622101a2a8a856e816589"
|
2021-03-16 18:18:54 +00:00
|
|
|
|
2021-12-29 20:12:54 +00:00
|
|
|
curl https://dl.google.com/android/repository/android-ndk-r17c-linux-x86_64.zip -o ${ANDROID_NDK_ZIP}
|
2021-08-31 09:27:30 +00:00
|
|
|
echo $ANDROID_NDK_SHA256 $ANDROID_NDK_ZIP | sha256sum -c || exit 1
|
2021-12-29 21:54:29 +00:00
|
|
|
unzip $ANDROID_NDK_ZIP -d $WORKDIR
|
2021-12-29 21:50:33 +00:00
|
|
|
|
|
|
|
${ANDROID_NDK_ROOT}/build/tools/make_standalone_toolchain.py --arch arm64 --api $API --install-dir ${TOOLCHAIN_A64_DIR} --stl=libc++
|
|
|
|
${ANDROID_NDK_ROOT}/build/tools/make_standalone_toolchain.py --arch arm --api $API --install-dir ${TOOLCHAIN_A32_DIR} --stl=libc++
|
|
|
|
${ANDROID_NDK_ROOT}/build/tools/make_standalone_toolchain.py --arch x86 --api $API --install-dir ${TOOLCHAIN_x86_DIR} --stl=libc++
|
|
|
|
${ANDROID_NDK_ROOT}/build/tools/make_standalone_toolchain.py --arch x86_64 --api $API --install-dir ${TOOLCHAIN_x86_64_DIR} --stl=libc++
|