From ec06bb2377a626c9bf4c06fd2a48c1423c5f3c6a Mon Sep 17 00:00:00 2001 From: Kitty Cat Date: Fri, 28 Nov 2025 14:20:57 -0500 Subject: [PATCH] add build-tools path --- build.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.sh b/build.sh index b67eaba..4361d9f 100755 --- a/build.sh +++ b/build.sh @@ -26,6 +26,9 @@ set_vars() { # We expect that we're going to be running out of [PROJECT]/meta, so we hop up one directory. BASEDIR=$(realpath "$(dirname -- "$(realpath -- "${BASH_SOURCE[0]}")")/..") + # Add build-tools to PATH + PATH="${BASEDIR}/prebuilts/build-tools/linux-x86/bin:${PATH}" + # Build toolchain locations CLANGDIR="${BASEDIR}/prebuilts/clang/host/linux-x86/clang-r547379" GCCDIR="${BASEDIR}/prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9"