android ndk-bulid

来源:互联网 发布:java定义常量 编辑:程序博客网 时间:2024/06/06 23:57

ndk-build

On this page

  1. Internals
  2. Invoking from the Command Line
  3. Invoking from Eclipse
  4. 64-Bit and 32-Bit Toolchains
  5. Requirements

The ndk-build file is a shell script introduced in Android NDK r4. Its purpose is to invoke调用 the right NDK build script.

Internals内部构件


Running the ndk-build script is equivalent等价 to running the following command:

$GNUMAKE -f <ndk>/build/core/build-local.mk<parameters>

$GNUMAKE points to GNU Make 3.81 or later, and <ndk> points to your NDK installation directory. You can use this information to invoke ndk-build from other shell scripts, or even your own make files.

Invoking from the Command Line从命令行调用


The ndk-build file lives in the top level the NDK installation directory. To run it from the command line, invoke it while in or under your application project directory. For example:

cd <project>$ <ndk>/ndk-build

In this example, <project> points to your project’s root directory, and <ndk> is the directory where you installed the NDK.

Options选项

All parameters to ndk-build are passed directly to the underlying(潜在的;根本的;在下面的;优先的) GNU make command that runs the NDK build scripts. Combine ndk-build and options in the form ndk-build <option>. For example:

$ ndk-build clean

The following options are available:

clean
Remove any previously以前 generated binaries.
V=1
Launch build, and display build commands.
-B
Force a complete rebuild.
-B V=1
Force a complete rebuild, and display build commands.
NDK_LOG=1
Display internal内部 NDK log messages (used for debugging the NDK itself).
NDK_DEBUG=1
Force a debuggable build (see Table 1).
NDK_DEBUG=0
Force a release build (see Table 1).
NDK_HOST_32BIT=1
Always use the toolchain in 32-bit mode (see 64-bit and 32-bit Toolchains).
NDK_APPLICATION_MK=<file>
Build, using a specific Application.mk file pointed to by the NDK_APPLICATION_MK variable.
-C <project>
Build the native code for the project path located at <project>. Useful if you don't want to cd to it in your terminal终端.

Invoking from Eclipse从Eclipse调用


To build from Eclipse, make sure that you have configured it as described in Setup. If you wish to build using the default ndk-build command, with no options, you can just build your project just as you would any Android project. To get Eclipse to add any of the options described above, follow these steps:

  1. In the Project Explorer pane, right-click your project name.
  2. Select Properties.
  3. Click C/C++ Build.
  4. Under the Builder Settings tab, uncheck Use default build command.
  5. In the Build command field, enter the entire build string as if you were typing it on the command line.
  6. Click OK.
Figure 1 shows an example of an entered string.


Figure 1. Specifying a debug build from within Eclipse

Debuggable versus Release builds

Use the NDK_DEBUG option and, in certain cases, AndroidManifest.xml to specify debug or release build, optimization优化-related behavior, and inclusion of symbols. Table 1 shows the results of each possible combination of settings.

Table 1. Results of NDK_DEBUG (command line) and android:debuggable (manifest) combinations组合.

 NDK_DEBUG=0NDK_DEBUG=1NDK_DEBUG not specifiedandroid:debuggble="true"Debug; Symbols; Optimized*1Debug; Symbols; Not optimized*2(same as NDK_DEBUG=1)android:debuggable="false"Release; Symbols; OptimizedRelease; Symbols; Not optimizedRelease; No symbols; Optimized*3*1: Useful for profiling.
*2: Default for running ndk-gdb.
*3: Default mode.

Note: NDK_DEBUG=0 is the equivalent of APP_OPTIM=release, and complies with the GCC -O2 option.NDK_DEBUG=1 is the equivalent of APP_OPTIM=debug in Application.mk, and complies with the GCC -O0option. For more information about APP_OPTIM, see Application.mk.

The syntax on the command line is, for example:

$ ndk-build NDK_DEBUG=1

If you are using build tools from prior先前 to SDK r8, you must also modify your AndroidManifest.xml file to specify debug mode. The syntax for doing so resembles the following:

<application android:label="@string/app_name"android:debuggable="true">
From SDK r8 onward从SDK r8开始, you do not need to touch AndroidManifest.xml. Building a debug package (e.g. with ant debug or the corresponding相应的 option of the ADT plugin) causes the tool automatically to pick the native debug files generated with NDK_DEBUG=1.

64-Bit and 32-Bit Toolchains64位和32位工具链


Some toolchains come with both 64-bit and 32-bit versions. For example, directories<ndk>/toolchain/<name>/prebuilt/ and <ndk>/prebuilt/ may contain both linux-x86 and linux-x86_64folders for Linux tools in 32-bit and 64-bit modes, respectively分别,各自. The ndk-build script automatically chooses a 64-bit version of the toolchain if the host OS supports it. You can force the use of a 32-bit toolchain by usingNDK_HOST_32BIT=1 either in your environment or on the ndk-build command line.

Note that 64-bit tools utilize利用 host resources better (for instance, they are faster, and handle larger programs), and they can still generate 32-bit binaries for Android.

Requirements要求需求


You need GNU Make 3.81 or later to use ndk-build or the NDK in general. The build scripts will detect检测 a non-compliant非相容型 Make tool, and generate an error message.

If you have GNU Make 3.81 installed, but the default make command doesn’t launch it, define GNUMAKE in your environment to point to it before launching ndk-build. For example:

$ export GNUMAKE=/usr/local/bin/gmake$ ndk-build

You can override other host prebuilt tools in $NDK/prebuilt/<OS>/bin/ with the following environment variables:

$ export NDK_HOST_AWK=<path-to-awk>$ export NDK_HOST_ECHO=<path-to-echo>$ export NDK_HOST_CMP=<path-to-cmp>
0 0