commit | 98fc897678534abdd44ddf49d7a5e1e5f2b26210 | [log] [tgz] |
---|---|---|
author | ZijunZhao <[email protected]> | Fri Aug 20 20:21:19 2021 +0000 |
committer | Zijun Zhao <[email protected]> | Tue Aug 31 22:18:34 2021 +0000 |
tree | d0157b580a2a17c0ef6f2696b9eae8a6bf23aba4 | |
parent | be974234bb863d65069a63056569fd390e96b392 [diff] |
Add build support and a smoke test for tsan. This is a xfail because we haven't updated the toolchain with the new tsan libraries, but this test should work correctly once we've updated. Bug: https://github.com/android/ndk/issues/1171 Change-Id: I669713b942e1ff4ca66ac958ffe0c03424e775a4
The latest version of this document is available at https://android.googlesource.com/platform/ndk/+/master/README.md.
Note: This document is for developers of the NDK, not developers that use the NDK.
The NDK allows Android application developers to include native code in their Android application packages, compiled as JNI shared libraries.
This page provides an overview of what is contained in the NDK. For information on building or testing the NDK, the roadmap, or other information, see the navigation bar at the top of this page, or the docs directory.
The NDK components can be loosely grouped into host toolchains, target prebuilts, build systems, and support libraries.
For more information, see the Build System Maintainers guide.
While the NDK is primarily a toolchain for building Android code, the package also includes some build system support.
First, $NDK/build/core
contains ndk-build. This is the NDK's home grown build system. The entry point for this build system is $NDK/build/ndk-build
(or $NDK/build/ndk-build.cmd
).
A CMake toolchain file is included at $NDK/build/cmake/android.toolchain.cmake
. This is separate from CMake‘s own support for the NDK. As of NDK r23 and CMake 3.21, CMake’s built-in support delegates to the hooks in $NDK/build/cmake/hooks
.
$NDK/build/tools/make_standalone_toolchain.py
is a tool which can create a redistributable toolchain that targets a single Android ABI and API level. As of NDK r19 it is unnecessary, as the installed toolchain may be invoked directly, but it remains for compatibility.
Since the Android Gradle plugin is responsible for both Java and native code, is not included as part of the NDK.
sources/android
and sources/third_party
contain modules that can be used in apps (gtest, cpufeatures, native_app_glue, etc) via $(call import-module,$MODULE)
in ndk-build. CMake modules are not yet available.