The Android platform provides a very minimal C++ runtime support library,
called system, which is the default runtime when using
ndk-build. This minimal support does not include, for example:
- Standard C++ Library support (except a few trivial headers).
- C++ exceptions support
- RTTI support
The NDK provides headers for use with this default library. In addition, the NDK provides a number of helper runtimes that provide additional features. This page provides information about these helper runtimes, their characteristics, and how to use them.
Warning: Using static runtimes can cause unexpected behavior. See the static runtimes section for more information.
Helper Runtimes
Table 1 provides names, brief explanations, and features of runtimes available in the NDK.
Table 1. NDK Runtimes and Features.
| Name | Explanation | Features |
|---|---|---|
system |
The minimal system C++ runtime library and the default runtime
when using ndk-build or the
experimental Gradle plugin.
Note: The shared object library for this runtime,
|
N/A |
gabi++_static |
The GAbi++ runtime (static library). | C++ Exceptions and RTTI |
gabi++_shared |
The GAbi++ runtime (shared library). | C++ Exceptions and RTTI |
stlport_static |
The STLport runtime (static library). | C++ Exceptions and RTTI; Standard Library |
stlport_shared |
The STLport runtime (shared library). | C++ Exceptions and RTTI; Standard Library |
gnustl_static |
The GNU STL (static library). This is the default runtime when using CMake or a standalone toolchain. | C++ Exceptions and RTTI; Standard Library |
gnustl_shared |
The GNU STL (shared library). | C++ Exceptions and RTTI; Standard Library |
c++_static |
The LLVM libc++ runtime (static library). | C++ Exceptions and RTTI; Standard Library |
c++_shared |
The LLVM libc++ runtime (shared library). | C++ Exceptions and RTTI; Standard Library |
How to set your runtime
If you are using CMake, you can specify a runtime from table 1 with the
ANDROID_STL variable in your module-level
build.gradle file. To learn more, go to Using CMake Variables.
If you are using ndk-build, you can specify a runtime from table 1 with the
APP_STL variable in your Application.mk file. For
example:
APP_STL := gnustl_static
You may only select one runtime for your app, and can only do in
Application.mk.
Even if you do not use the NDK build system, you can still use STLport, libc++ or GNU STL. For more information on how to use these runtimes with your own toolchain, see Standalone Toolchain.
Runtime Characteristics
system
This runtime only provides the following headers, with no support beyond them:
cassertcctypecerrnocfloatclimitscmathcsetjmpcsignalcstddefcstdintcstdiocstdlibcstringctimecwcharnewstl_pair.htypeinfoutility
GAbi++ runtime
This runtime provides the same headers as the default runtime, but adds support for RTTI (RunTime Type Information) and exception handling.
STLport runtime
This runtime is an Android port of STLport (http://www.stlport.org). It provides a complete set of C++ standard library headers. It also, by embedding its own instance of GAbi++, provides support for RTTI and exception handling.
While shared and static versions of this runtime are avilable, we recommend using the shared version. For more information, see Static runtimes.
The shared library file is named libstlport_shared.so instead of libstdc++.so
as is common on other platforms.
In addition to the static- and shared-library options, you can also force the NDK to
build the library from sources by adding the following line to your Application.mk
file, or setting it in your environment prior to building:
STLPORT_FORCE_REBUILD := true
GNU STL runtime
This runtime is the GNU Standard C++ Library, (libstdc++-v3). Its shared library file is
named libgnustl_shared.so.
libc++ runtime:
This runtime is an Android port of LLVM libc++. Its
shared library file is named libc++_shared.so.
By default, this runtime compiles with -std=c++11. As with GNU libstdc++, you
need to explicitly turn on exceptions or RTTI support. For information on how to do this, see
C++ Exceptions and RTTI.
The NDK provides prebuilt static and shared libraries for libc++, but you can force the
NDK to rebuild libc++ from sources by adding the following line to your
Application.mk file, or setting it in your environment prior to building:
LIBCXX_FORCE_REBUILD := true
Atomic support
If you include <atomic>, it's likely that you also need libatomic.
If you are using ndk-build, add the following line:
LOCAL_LDLIBS += -latomic
If you are using your own toolchain, use:
-latomic
Compatibility
The NDK's libc++ is not stable. Not all the tests pass, and the test suite is not comprehensive. Some known issues are:
- Using
c++_sharedon ARM can crash when an exception is thrown. - Support for
wchar_tand the locale APIs is limited.
You should also make sure to check the "Known Issues" section of the changelog for the NDK release you are using.
Warning: Attempting to change to an unsupported locale will
not fail. The operation will succeed, but the locale will not change and the
following message will appear in logcat.
newlocale() WARNING: Trying to set locale to en_US.UTF-8 other than "", "C" or "POSIX"
Important Considerations
C++ Exceptions
The NDK toolchain allows you to use C++ runtimes that support exception
handling. However, to ensure compatibility with earlier releases, it compiles
all C++ sources with -fno-exceptions support by default. You can
enable C++ exceptions either for your entire app, or for individual modules.
To enable exception-handling support, add the following to your module-level
build.gradle file:
android {
...
defaultConfig {
...
externalNativeBuild {
// For ndk-build, instead use ndkBuild {}
cmake {
// Enables exception-handling support.
cppFlags "-fexceptions"
}
}
}
}
...
Alternatively, if you're using ndk-build, enable support for your entire app
by adding the following line to your Application.mk file:
APP_CPPFLAGS := -fexceptions
To enable exception-handling support per individual modules while using
ndk-build, add the following line to their respective Android.mk files:
LOCAL_CPP_FEATURES := exceptions
Alternatively, you can use:
LOCAL_CPPFLAGS := -fexceptions
RTTI
The NDK toolchain allows you to use C++ runtimes that support RTTI. However,
to ensure compatibility with earlier releases, it compiles all C++ sources
with -fno-rtti by default.
To enable RTTI support, add the following to your module-level
build.gradle file:
android {
...
defaultConfig {
...
externalNativeBuild {
// For ndk-build, instead use ndkBuild {}
cmake {
// Enables RTTI support.
cppFlags "-frtti"
}
}
}
}
...
Alternatively, if you are using ndk-build, enable RTTI support for your
entire app by adding the following line to your Application.mk file:
APP_CPPFLAGS := -frtti
To enable RTTI support for individual modules, add the following line to
their respective Android.mk files:
LOCAL_CPP_FEATURES := rttiAlternatively, you can use:
LOCAL_CPPFLAGS := -frtti
Static runtimes
Linking the static library variant of a C++ runtime to more than one binary may result in unexpected behavior. For example, you may experience:
- Memory allocated in one library, and freed in the other, causing memory leakage or heap corruption.
- Exceptions raised in
libfoo.sogoing uncaught inlibbar.so, causing your app to crash. - Buffering of
std::coutnot working properly
In addition, if you link two shared libraries–or a shared library and an executable– against the same static runtime, the final binary image of each shared library includes a copy of the runtime's code. Having multiple instances of runtime code is problematic because of duplication of certain global variables that the runtime uses or provides internally.
This problem does not apply to a project comprising a single shared library. For example,
you can link against stlport_static, and expect your app to behave correctly. If your
project requires several shared library modules, we recommend that you use the shared library
variant of your C++ runtime.
Shared runtimes
If your app targets a version of Android earlier than Android 4.3 (Android API level 18), and you use the shared library variant of a given C++ runtime, you must load the shared library before any other library that depends on it.
For example, an app may have the following modules:
- libfoo.so
- libbar.so which is used by libfoo.so
- libstlport_shared.so, used by both libfoo and libbar
You must load the libraries in reverse dependency order:
static {
System.loadLibrary("stlport_shared");
System.loadLibrary("bar");
System.loadLibrary("foo");
}
Note: Do not use the lib prefix when calling
System.loadLibrary().
Licensing
STLport is licensed under a BSD-style open-source license. See
$NDK/sources/cxx-stl/stlport/README for more details about STLport.
GNU libstdc++ is covered by the GPLv3 license, and not the LGPLv2 or LGPLv3. For more information, see License on the GCC website.
LLVM libc++
is dual-licensed under both the University of Illinois "BSD-Like" license and the MIT license.

