1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-25 04:38:01 +00:00

meson: add -fno-signed-zeros to default flags

It is safe to enable. Even FFmpeg enables this by default.
0415bb74c8/configure (L7521)
This commit is contained in:
Kacper Michajłow 2024-06-05 19:30:11 +02:00
parent ac5d27fce5
commit 3f84969b21

View File

@ -285,7 +285,8 @@ test_flags = ['-Wdisabled-optimization',
'-Wno-sign-compare',
'-Wno-switch',
'-Wno-unused-parameter',
'-fno-math-errno']
'-fno-math-errno',
'-fno-signed-zeros']
flags += cc.get_supported_arguments(test_flags)