intel: enable -mfpmath=sse on x86
It's not enabled by default until -msse2
and -ffast-math
is passed.
We pass only the -msse2
. Let's align it with the main meson.build
.
See: https://gcc.gnu.org/onlinedocs/gcc/x86-Options.html (-mfpmath).
This should increase consistency with x86-64 while producing consistent results.
Signed-off-by: David Heidelberg david.heidelberg@collabora.com
Edited by David Heidelberg