summaryrefslogtreecommitdiffstats
path: root/services/audioflinger
diff options
context:
space:
mode:
authorChih-Hung Hsieh <chh@google.com>2014-11-18 23:53:15 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-11-18 23:53:15 +0000
commit9b3238218cf24c75f92c5174e3a4edb8aff17047 (patch)
tree68fb4af015dd3d6e19621098a36648c183f023d2 /services/audioflinger
parent5f3eef9a6a946347bc7d8c5dc76290c9e780f818 (diff)
parente40442092efa37619d11685451f7e8e8bde9e79a (diff)
downloadframeworks_av-9b3238218cf24c75f92c5174e3a4edb8aff17047.zip
frameworks_av-9b3238218cf24c75f92c5174e3a4edb8aff17047.tar.gz
frameworks_av-9b3238218cf24c75f92c5174e3a4edb8aff17047.tar.bz2
am e4044209: Merge "Disable clang++ due to compiler error."
* commit 'e40442092efa37619d11685451f7e8e8bde9e79a': Disable clang++ due to compiler error.
Diffstat (limited to 'services/audioflinger')
-rw-r--r--services/audioflinger/Android.mk6
-rw-r--r--services/audioflinger/tests/Android.mk6
2 files changed, 12 insertions, 0 deletions
diff --git a/services/audioflinger/Android.mk b/services/audioflinger/Android.mk
index 83211eb..f3290c6 100644
--- a/services/audioflinger/Android.mk
+++ b/services/audioflinger/Android.mk
@@ -23,6 +23,12 @@ include $(BUILD_STATIC_LIBRARY)
include $(CLEAR_VARS)
+# Clang++ aborts on AudioMixer.cpp,
+# b/18373866, "do not know how to split this operator."
+ifeq ($(filter $(TARGET_ARCH),arm arm64),$(TARGET_ARCH))
+ LOCAL_CLANG := false
+endif
+
LOCAL_SRC_FILES:= \
AudioFlinger.cpp \
Threads.cpp \
diff --git a/services/audioflinger/tests/Android.mk b/services/audioflinger/tests/Android.mk
index 8935981..8604ef5 100644
--- a/services/audioflinger/tests/Android.mk
+++ b/services/audioflinger/tests/Android.mk
@@ -30,6 +30,12 @@ include $(BUILD_NATIVE_TEST)
#
include $(CLEAR_VARS)
+# Clang++ aborts on AudioMixer.cpp,
+# b/18373866, "do not know how to split this operator."
+ifeq ($(filter $(TARGET_ARCH),arm arm64),$(TARGET_ARCH))
+ LOCAL_CLANG := false
+endif
+
LOCAL_SRC_FILES:= \
test-mixer.cpp \
../AudioMixer.cpp.arm \