Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 42e5a1eb authored by Chih-Hung Hsieh's avatar Chih-Hung Hsieh
Browse files

Disable clang++ due to compiler error.

Clang++ chokes on AudioMixer.cpp.
It does not know "how to split this operator."

BUG: 18373866
Change-Id: I3d588d44596c7c3b6f97e5f822545e015b074206
parent a82b5f57
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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                 \
+6 −0
Original line number Diff line number Diff line
@@ -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 \