summaryrefslogtreecommitdiffstats
path: root/adb/Android.mk
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2015-04-20 12:36:50 -0700
committerColin Cross <ccross@android.com>2015-04-20 12:43:02 -0700
commitdc1e482b205ac6f04a4c1344bd0038e593a25ce3 (patch)
tree120397e98dc6a3bb091a08219a6d2362c2313693 /adb/Android.mk
parentb2b06de5fc9605919a06d7757c8ef4a7a48f3e87 (diff)
downloadsystem_core-dc1e482b205ac6f04a4c1344bd0038e593a25ce3.tar.gz
system_core-dc1e482b205ac6f04a4c1344bd0038e593a25ce3.tar.bz2
system_core-dc1e482b205ac6f04a4c1344bd0038e593a25ce3.zip
Fix windows adb build
libc++ is not available on windows yet, but it already defaults to static libstdc++. Change-Id: I85a766ead84f71fe1f2f59be6ac739b0b833b6db
Diffstat (limited to 'adb/Android.mk')
-rw-r--r--adb/Android.mk5
1 files changed, 4 insertions, 1 deletions
diff --git a/adb/Android.mk b/adb/Android.mk
index 3c48585d0..d120f0acf 100644
--- a/adb/Android.mk
+++ b/adb/Android.mk
@@ -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++