mirror of
https://github.com/AngelAuraMC/angelauramc-openjdk-build.git
synced 2025-08-03 15:46:08 -04:00
11 lines
318 B
Bash
Executable File
11 lines
318 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
. setdevkitpath.sh
|
|
|
|
$NDK/build/tools/make-standalone-toolchain.sh \
|
|
--arch=${TARGET_SHORT} \
|
|
--platform=android-21 \
|
|
--install-dir=$NDK_HOME/generated-toolchains/android-${TARGET_SHORT}-toolchain
|
|
cp devkit.info.${TARGET_SHORT} $NDK_HOME/generated-toolchains/android-${TARGET_SHORT}-toolchain/
|