mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 11:15:13 +03:00
16 lines
647 B
Diff
16 lines
647 B
Diff
using vfpv4 generates fma neon instructions not supported on some devices that
|
|
otherwise support neon
|
|
(or that's why i'm guessing this works)
|
|
diff --git a/meson.build b/meson.build
|
|
index d354841..5d4e9c7 100644
|
|
--- a/meson.build
|
|
+++ b/meson.build
|
|
@@ -197,7 +197,7 @@ if host_cpu_family == 'x86_64'
|
|
x86_64_v3_flags += '-DX86_64_V3'
|
|
|
|
elif host_cpu_family == 'arm'
|
|
- arm_neon_flags = cc.get_supported_arguments(['-mfpu=neon-vfpv4'])
|
|
+ arm_neon_flags = cc.get_supported_arguments(['-mfpu=neon-vfpv3'])
|
|
arm_neon_flags += '-DARM_NEON'
|
|
elif host_cpu_family == 'aarch64'
|
|
common_c_flags += cc.get_supported_arguments(['-mfpu=neon-fp-armv8'])
|