mirror of
https://github.com/AngelAuraMC/angelauramc-openjdk-build.git
synced 2025-08-03 07:35:59 -04:00
14 lines
332 B
Bash
14 lines
332 B
Bash
#!/bin/bash
|
|
set -e
|
|
# We have OpenJDK 8, good enough
|
|
export USE_SYSTEM_JDK_8=1
|
|
wget -nc -nv -O android-ndk-r10e-linux-x86_64.zip "https://dl.google.com/android/repository/android-ndk-r10e-linux-x86_64.zip"
|
|
./extractndk.sh
|
|
./getlibs.sh
|
|
./maketoolchain.sh
|
|
./clonejdk.sh
|
|
./buildlibs.sh
|
|
./buildjdk.sh
|
|
./removejdkdebuginfo.sh
|
|
./tarjdk.sh
|