Set debug level to slowdebug for iOS port

This commit is contained in:
Duy Tran Khanh 2021-05-18 11:54:43 +07:00 committed by GitHub
parent c04b8daf8f
commit f9594f38ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,20 +1,22 @@
#!/bin/bash
set -e
. setdevkitpath.sh
export JDK_DEBUG_LEVEL=release
if [ "$BUILD_IOS" != "1" ]; then
sudo apt update
fi
. setdevkitpath.sh
if [ "$BUILD_IOS" == "1" ]; then
chmod +x ios-arm64-clang
chmod +x ios-arm64-clang++
else
wget -nc -nv -O android-ndk-$NDK_VERSION-linux-x86_64.zip "https://dl.google.com/android/repository/android-ndk-$NDK_VERSION-linux-x86_64.zip"
./extractndk.sh
./maketoolchain.sh
else
# OpenJDK 8 iOS port is still in unusable state, so we need build in debug mode
export JDK_DEBUG_LEVEL=slowdebug
chmod +x ios-arm64-clang
chmod +x ios-arm64-clang++
chmod +x macos-host-cc
fi
# Some modifies to NDK to fix