summaryrefslogtreecommitdiffstats
path: root/fastboot
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2015-04-20 20:53:10 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-04-20 20:53:10 +0000
commit1c3a69151bcb961a58c2135e53df38e21fc141a7 (patch)
tree65dabd18a359e82fbdc9053a5a31df55095c19d0 /fastboot
parent454f35fd759b3db5f0e87309c15e7943e527534d (diff)
parent10766eac61120732f11b82b1695207a3a5870a47 (diff)
downloadsystem_core-1c3a69151bcb961a58c2135e53df38e21fc141a7.zip
system_core-1c3a69151bcb961a58c2135e53df38e21fc141a7.tar.gz
system_core-1c3a69151bcb961a58c2135e53df38e21fc141a7.tar.bz2
am 10766eac: am 6de70784: am 631cf146: Merge "Fix windows adb build"
* commit '10766eac61120732f11b82b1695207a3a5870a47': Fix windows adb build
Diffstat (limited to 'fastboot')
-rw-r--r--fastboot/Android.mk5
1 files changed, 4 insertions, 1 deletions
diff --git a/fastboot/Android.mk b/fastboot/Android.mk
index 2ac3128..7b2975b 100644
--- a/fastboot/Android.mk
+++ b/fastboot/Android.mk
@@ -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++