Lines Matching refs:NDK
7 The Android NDK r4 introduced a new tiny shell script, named 'ndk-build',
10 The script is located at the top-level directory of the NDK, and shall
15 $NDK/ndk-build
17 Where $NDK points to your NDK installation path. You can also create an
18 alias or add $NDK to your PATH to avoid typing it every time.
25 command that runs the NDK build scripts. Notable uses include:
39 ndk-build NDK_LOG=1 --> display internal NDK log messages
40 (used for debugging the NDK itself).
59 In NDK r5, ndk-build has been modified to make it easier to switch between
63 $NDK/ndk-build NDK_DEBUG=1 => forces the generation of debug binaries
64 $NDK/ndk-build NDK_DEBUG=0 => forces the generation of release binaries
80 NDK are now stored in different directories (e.g. obj/local/<abi>/objs and
90 directories `$NDK/toolchain/<name>/prebuilt` and `$NDK/prebuilt` may contains both
104 You need GNU Make 3.81 or later to use 'ndk-build' or the NDK in general.
121 You may override other host prebuilt tools in $NDK/prebuilt/<OS>/bin
135 to invoke the right NDK build script, it is equivalent to;
137 $GNUMAKE -f $NDK/build/core/build-local.mk [parameters]
139 Where '$GNUMAKE' points to GNU Make 3.81 or later, and $NDK points to your
140 NDK installation directory.
142 Use this knowledge if you want to invoke the NDK build script from other