am 6de70784: am 631cf146: Merge "Fix windows adb build"

* commit '6de70784ef5bdc6bf495fa86eda68deb16ef2f9e':
  Fix windows adb build
This commit is contained in:
Colin Cross 2015-04-20 20:31:27 +00:00 committed by Android Git Automerger
commit 10766eac61
2 changed files with 8 additions and 2 deletions

View File

@ -165,7 +165,10 @@ LOCAL_STATIC_LIBRARIES := \
libcutils \
$(EXTRA_STATIC_LIBS) \
LOCAL_CXX_STL := libc++_static
# libc++ not available on windows yet
ifneq ($(HOST_OS),windows)
LOCAL_CXX_STL := libc++_static
endif
# Don't add anything here, we don't want additional shared dependencies
# on the host adb tool, and shared libraries that link against libc++

View File

@ -74,7 +74,10 @@ LOCAL_REQUIRED_MODULES := libf2fs_fmt_host_dyn
LOCAL_STATIC_LIBRARIES += libf2fs_utils_host libf2fs_ioutils_host libf2fs_dlutils_host
endif
LOCAL_CXX_STL := libc++_static
# libc++ not available on windows yet
ifneq ($(HOST_OS),windows)
LOCAL_CXX_STL := libc++_static
endif
# Don't add anything here, we don't want additional shared dependencies
# on the host fastboot tool, and shared libraries that link against libc++