aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2019-09-17 12:32:07 -0700
committerDan Albert <danalbert@google.com>2019-09-17 14:10:11 -0700
commitaab51cae0a8c772e28fd8e6f7ace342924840996 (patch)
treeb81ed23cf69e3875316e809cba5fa4c3245f68f1 /docs
parente8f2ded41cfcc281ec26d28d553d24d4631e65f7 (diff)
downloadndk-aab51cae0a8c772e28fd8e6f7ace342924840996.tar.gz
Remove useless cxx-stl/system module.
This used to be used to export the system's basic C++ headers to projects, but that's now handled directly by the toolchain. Anyone that was explicitly linking this module will get the usual "you're linking something that doesn't exist, are you sure you meant to?" message. Anyone explicitly importing this directory will receive a less clear error message of "could not find cxx-stl/system". Both of these error cases are extremely unlikely since this has never been something user's have needed to do. Test: ./checkbuild.py && ./run_test.py Bug: https://github.com/android/ndk/issues/1081 Change-Id: I5350c05237f1851733d9a45eb1b5fd8445626fdb
Diffstat (limited to 'docs')
-rw-r--r--docs/changelogs/Changelog-r21.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/changelogs/Changelog-r21.md b/docs/changelogs/Changelog-r21.md
index 388de1cb6..211c16e1a 100644
--- a/docs/changelogs/Changelog-r21.md
+++ b/docs/changelogs/Changelog-r21.md
@@ -69,9 +69,15 @@ For Android Studio issues, follow the docs on the [Android Studio site].
version 3.6 or newer to get the fix.
* Fixed ndk-build to use Clang's default C++ standard version (currently C++14)
when using libc++.
+ * Removed the `cxx-stl/system` module from ndk-build. The system STL is still
+ available (for now, see [Issue 744]); only an implementation detail has been
+ removed. If you were explicitly linking libstdc++ or importing
+ `cxx-stl/system`, remove that and ensure that `APP_STL` is set to `system`
+ instead.
[Issue 1004]: https://github.com/android-ndk/ndk/issues/1004
[Issue 1028]: https://github.com/android/ndk/issues/1028
+[Issue 744]: https://github.com/android/ndk/issues/744
[Issue 855]: https://github.com/android-ndk/ndk/issues/855
[Issue 859]: https://github.com/android-ndk/ndk/issues/859
[Issue 884]: https://github.com/android-ndk/ndk/issues/884