Home | History | Annotate | Download | only in docs

Lines Matching full:build

76   - A build system that allow developers to only write very short build files
77 to describe which sources need to be compiled, and how. The build system
80 system interfaces without requiring changes in the developer's build
133 to the NDK build system
136 project in more details to the build system. You don't need
141 4/ Build your native code by running "$NDK/ndk-build" from your
154 Previous releases required that you run the 'build/host-setup.sh'
183 III.3/ Writing an Android.mk build script:
186 An Android.mk file is a small build script that you write to describe your
187 sources to the NDK build system. Its syntax is described in details in
199 Note that a single Android.mk might be parsed several times by the build
201 By default, the NDK will look for the following build script:
212 build file's path.
215 III.4/ Writing an Application.mk build file (optional):
218 While an Android.mk file describes your modules to the build system, the
228 build, specific C or C++ compiler flags and others that should
238 up automatically by the 'ndk-build' script (more on this later)
254 III.5/ Invoke the NDK build system:
257 The preferred way to build machine code with the NDK is to use the
258 'ndk-build' script introduced with Android NDK r4. You can also use
261 In both cases, a succesful build will copy the final stripped binary modules
267 1: Using the 'ndk-build' command:
270 The 'ndk-build' script, located at the top of the NDK installation path
276 $NDK/ndk-build
278 This will launch the NDK build scripts, which will automatically probe your
279 development system and application project file to determine what to build.
283 ndk-build
284 ndk-build clean --> clean generated binaries
285 ndk-build -B V=1 --> force complete rebuild, showing commands
295 See docs/NDK-BUILD.TXT for a more complete description of what this script
302 This build method was the only one before Android NDK r4 and is only
304 to using the 'ndk-build' command as soon as possible, since we may remove
313 to the NDK build system (no spaces allowed).
358 2. Build your application with 'ndk-build', then install it on your