From 5c14447e864d271891a6ffbe694a4254aa901d59 Mon Sep 17 00:00:00 2001 From: Javernaut Date: Thu, 21 Oct 2021 19:12:09 +0300 Subject: [PATCH] Using Make from Android SDK --- scripts/export-host-variables.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/export-host-variables.sh b/scripts/export-host-variables.sh index 751b9d5..0d43dfd 100755 --- a/scripts/export-host-variables.sh +++ b/scripts/export-host-variables.sh @@ -27,8 +27,8 @@ export HOST_NPROC=$HOST_NPROC # Using CMake from the Android SDK export CMAKE_EXECUTABLE=${ANDROID_SDK_HOME}/cmake/3.10.2.4988404/bin/cmake -# Using Build machine's Make, because Android NDK's Make (before r21) doesn't work properly in MSYS2 on Windows -export MAKE_EXECUTABLE=$(which make) +# Using Make from the Android SDK +export MAKE_EXECUTABLE=${ANDROID_NDK_HOME}/prebuilt/${HOST_TAG}/bin/make # Using Build machine's Ninja. It is used for libdav1d building. Needs to be installed export NINJA_EXECUTABLE=$(which ninja) # Meson is used for libdav1d building. Needs to be installed