diff options
author | Jeff Davidson <jpd@google.com> | 2015-02-06 11:40:58 -0800 |
---|---|---|
committer | Jeff Davidson <jpd@google.com> | 2015-02-06 11:40:58 -0800 |
commit | 7b93f287c2bce7520f2a80d7c059415d31221f2a (patch) | |
tree | 31a9eed95dd9a036b9621a4093e5cf77378c0fa9 | |
parent | 1c2c4706c4995122bb1271618511b27e84a9326a (diff) | |
download | external_protobuf-7b93f287c2bce7520f2a80d7c059415d31221f2a.zip external_protobuf-7b93f287c2bce7520f2a80d7c059415d31221f2a.tar.gz external_protobuf-7b93f287c2bce7520f2a80d7c059415d31221f2a.tar.bz2 |
Include libc++ statically in aprotoc.
Allows us to include aprotoc as a prebuilt separate from the platform
build for use in unbundled projects.
Bug: 19285118
Change-Id: I05f5dbf019ab08db31c33e7d30899189175a8315
-rw-r--r-- | Android.mk | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -407,6 +407,10 @@ LOCAL_MODULE := aprotoc LOCAL_MODULE_CLASS := EXECUTABLES LOCAL_MODULE_TAGS := optional +# Build aprotoc as a standalone binary because we copy it to +# unbundled projects where libc++.so may not be available. +LOCAL_CXX_STL := libc++_static + LOCAL_CPP_EXTENSION := .cc LOCAL_SRC_FILES := $(COMPILER_SRC_FILES) |