We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1b34c1b + ba71cdc commit 00f94e8Copy full SHA for 00f94e8
media/libstagefright/Android.mk
@@ -95,10 +95,12 @@ LOCAL_STATIC_LIBRARIES := \
95
# currently must follow the same logic to determine how webkit was built and
96
# if it's safe to link against libchromium.net
97
98
-# V8 also requires an ARMv7 CPU, and since we must use jsc, we cannot
+# V8 also requires an ARMv7 & x86 CPU, and since we must use jsc, we cannot
99
# use the Chrome http stack either.
100
ifneq ($(strip $(ARCH_ARM_HAVE_ARMV7A)),true)
101
- USE_ALT_HTTP := true
+ ifneq ($(TARGET_ARCH),x86)
102
+ USE_ALT_HTTP := true
103
+ endif
104
endif
105
106
# See if the user has specified a stack they want to use
0 commit comments