This commit is contained in:
Artem Pavlenko 2020-07-01 16:12:51 +01:00
parent 9cbba21e47
commit de096bdd45

View file

@ -375,7 +375,7 @@ if env["USE_SSE"] == "yes":
# As of GCC 4.5, 387 fp math is significantly slower in C99 mode without this.
# Note: CPUs without SSE2 use 387 for doubles, even when SSE fp math is set.
if 'gcc' in env['CC']:
lib_env.Append(CFLAGS='-fexcess-prevision=fast')
lib_env.Append(CFLAGS='-fexcess-precision=fast')
elif env["USE_SSE"] == "no":
lib_env.Append(CFLAGS="-mno-sse")
elif env["USE_SSE"] == "platform_default":