Lines Matching full:build
1 'ndk-build' Overview
6 The Android NDK r4 introduced a new tiny shell script, named 'ndk-build',
14 $NDK/ndk-build
23 All parameters to 'ndk-build' are passed directly to the underlying GNU Make
24 command that runs the NDK build scripts. Notable uses include:
26 ndk-build --> rebuild required machine code.
27 ndk-build clean --> clean all generated binaries.
29 ndk-build V=1 --> launch build, displaying build commands.
31 ndk-build -B --> force a complete rebuild.
33 ndk-build -B V=1 --> force a complete rebuild and display build
36 ndk-build NDK_LOG=1 --> display internal NDK log messages
39 ndk-build NDK_APP_APPLICATION_MK=<file>
43 ndk-build -C <project> --> build the native code for the project
51 You need GNU Make 3.81 or later to use 'ndk-build' or the NDK in general.
52 The build scripts will detect that you're using a non-compliant Make tool
57 before launching 'ndk-build'. For example:
59 GNUMAKE=/usr/local/bin/gmake ndk-build
64 ndk-build
72 'ndk-build' itself is a tiny wrapper around GNU Make, its purpose is simply
73 to invoke the right NDK build script, it is equivalent to;
75 $GNUMAKE -f $NDK/build/core/build-local.mk [parameters]
80 Use this knowledge if you want to invoke the NDK build script from other