aboutsummaryrefslogtreecommitdiff
path: root/sources
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 /sources
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 'sources')
-rw-r--r--sources/cxx-stl/system/Android.mk9
-rw-r--r--sources/cxx-stl/system/setup.mk4
2 files changed, 0 insertions, 13 deletions
diff --git a/sources/cxx-stl/system/Android.mk b/sources/cxx-stl/system/Android.mk
deleted file mode 100644
index 8c0116519..000000000
--- a/sources/cxx-stl/system/Android.mk
+++ /dev/null
@@ -1,9 +0,0 @@
-LOCAL_PATH:= $(call my-dir)
-
-include $(CLEAR_VARS)
-
-LOCAL_MODULE := libstdc++
-LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/include
-LOCAL_EXPORT_LDLIBS := -lstdc++
-
-include $(BUILD_STATIC_LIBRARY)
diff --git a/sources/cxx-stl/system/setup.mk b/sources/cxx-stl/system/setup.mk
deleted file mode 100644
index 96b3d97e0..000000000
--- a/sources/cxx-stl/system/setup.mk
+++ /dev/null
@@ -1,4 +0,0 @@
-NDK_APP_CXX_STATIC_LIBRARIES := libstdc++
-NDK_APP_CXX_SHARED_LIBRARIES :=
-
-include $(call my-dir)/Android.mk