1
--- a/build/moz.configure/arm.configure
2
+++ b/build/moz.configure/arm.configure
4
# that compiling uses the "softfloat" ABI, force the use of the
5
# "softfp" ABI instead.
7
- if arm_target.float_abi == "soft":
8
- flags.append("-mfloat-abi=softfp")
9
if arm_target.arm_arch < 7:
10
# clang needs to be forced to at least armv7 for -mfpu=neon to do
12
--- a/dom/media/webaudio/moz.build
13
+++ b/dom/media/webaudio/moz.build
15
LOCAL_INCLUDES += ["/media/openmax_dl/dl/api/"]
17
# Are we targeting x86 or x64? If so, build SSEX files.
18
-if CONFIG["INTEL_ARCHITECTURE"]:
19
+if CONFIG["CPU_ARCH"] == "x86_64":
20
DEFINES["USE_SSE2"] = True
21
SOURCES += ["AudioNodeEngineSSE2.cpp"]
22
LOCAL_INCLUDES += ["/third_party/xsimd/include"]