pulseaudio: enable neon by default for aarch64

This commit is contained in:
MilhouseVH 2017-05-13 07:30:38 +01:00
parent 3f08c6ad22
commit c2dc3afb0b

View File

@ -46,7 +46,8 @@ else
PULSEAUDIO_AVAHI="--disable-avahi"
fi
if [ "$TARGET_FPU" = "neon" -o "$TARGET_FPU" = "neon-fp16" -o "$TARGET_FPU" = "neon-vfpv4" ]; then
# PulseAudio fails to build on aarch64 when NEON is enabled, so don't enable NEON for aarch64 until upstream supports it
if echo "$TARGET_FPU" | grep -q '^neon'; then
PULSEAUDIO_NEON="--enable-neon-opt"
else
PULSEAUDIO_NEON="--disable-neon-opt"