From b728e41d77617188f38a20b10dfc5698b2ffe297 Mon Sep 17 00:00:00 2001 From: Elias Andualem Date: Sat, 21 Feb 2026 23:43:34 +0800 Subject: [PATCH] build: clarify ANDROID_NDK_HOME variable description --- pkg/android-ndk/build.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/android-ndk/build.zig b/pkg/android-ndk/build.zig index 8008c5aed..8d4668fe5 100644 --- a/pkg/android-ndk/build.zig +++ b/pkg/android-ndk/build.zig @@ -9,9 +9,9 @@ pub fn build(_: *std.Build) !void {} // in the default location. // // The environment variables can be set as follows: -// - `ANDROID_NDK_HOME`: Directly points to the NDK path. +// - `ANDROID_NDK_HOME`: Directly points to the NDK path, including the version. // - `ANDROID_HOME` or `ANDROID_SDK_ROOT`: Points to the Android SDK path; -// latest NDK will be automatically selected. +// latest available NDK will be automatically selected. // // NB: This is a workaround until zig natively supports bionic // cross-compilation (ziglang/zig#23906).