meson: remove -ffast-math

It can cause crashes in some cases and does not seem to cause much
performance loss on x86.

Fixes #3489
This commit is contained in:
Wim Taymans 2023-09-06 21:32:48 +02:00
parent c842ef7071
commit 805fbd0b34

View file

@ -15,7 +15,7 @@ audioconvert_c = static_library('audioconvert_c',
'peaks-ops-c.c', 'peaks-ops-c.c',
'resample-native-c.c', 'resample-native-c.c',
'fmt-ops-c.c' ], 'fmt-ops-c.c' ],
c_args : ['-Ofast', '-ffast-math'], c_args : ['-Ofast'],
dependencies : [ spa_dep ], dependencies : [ spa_dep ],
install : false install : false
) )