Lines Matching refs:build
78 - A build system that allow developers to only write very short build files
79 to describe which sources need to be compiled, and how. The build system
82 system interfaces without requiring changes in the developer's build
135 to the NDK build system
138 project in more details to the build system. You don't need
143 4. Build your native code by running "`$NDK/ndk-build`" from your
156 Previous releases required that you run the 'build/host-setup.sh'
184 ### 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):
217 While an Android.mk file describes your modules to the build system, the
227 build, specific C or C++ compiler flags and others that should
237 up automatically by the 'ndk-build' script (more on this later)
253 ### III.5/ Invoke the NDK build system:
255 The preferred way to build machine code with the NDK is to use the
256 'ndk-build' script introduced with Android NDK r4. You can also use
259 In both cases, a successful build will copy the final stripped binary modules
265 ### 1: Using the 'ndk-build' command:
267 The 'ndk-build' script, located at the top of the NDK installation path
273 $NDK/ndk-build
275 This will launch the NDK build scripts, which will automatically probe your
276 development system and application project file to determine what to build.
280 ndk-build
281 ndk-build clean --> clean generated binaries
282 ndk-build -B V=1 --> force complete rebuild, showing commands
298 By default, ndk-build places all intermediate generated files under
312 done since build system expects the default $PROJECT/libs/
342 2. Build your application with 'ndk-build', then install it on your