fix typo
This commit is contained in:
parent
9cbba21e47
commit
de096bdd45
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
# 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.
|
# Note: CPUs without SSE2 use 387 for doubles, even when SSE fp math is set.
|
||||||
if 'gcc' in env['CC']:
|
if 'gcc' in env['CC']:
|
||||||
lib_env.Append(CFLAGS='-fexcess-prevision=fast')
|
lib_env.Append(CFLAGS='-fexcess-precision=fast')
|
||||||
elif env["USE_SSE"] == "no":
|
elif env["USE_SSE"] == "no":
|
||||||
lib_env.Append(CFLAGS="-mno-sse")
|
lib_env.Append(CFLAGS="-mno-sse")
|
||||||
elif env["USE_SSE"] == "platform_default":
|
elif env["USE_SSE"] == "platform_default":
|
||||||
|
|
Loading…
Reference in a new issue