summaryrefslogtreecommitdiffstats
path: root/build/features.py
diff options
context:
space:
mode:
authorluz.paz <luzpaz@users.noreply.github.com>2018-05-01 11:07:23 -0400
committerluz.paz <luzpaz@users.noreply.github.com>2018-05-01 11:07:23 -0400
commit5f32c68462b99e1eadf5e0c000e38a52d56b7ea5 (patch)
tree84a26da508a110dfa1d9c0c1790b911310a704a2 /build/features.py
parent54d15e3b6d6878131e36f2dac8d1b6180a8bf06b (diff)
Misc. typos
Fixes found via `codespell`
Diffstat (limited to 'build/features.py')
-rw-r--r--build/features.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/features.py b/build/features.py
index 7b3563edea..336db7bcb3 100644
--- a/build/features.py
+++ b/build/features.py
@@ -1189,7 +1189,7 @@ class Optimize(Feature):
if build.architecture_is_x86 and not build.machine_is_64bit:
# For 32 bit builds using gcc < 5.0, the mfpmath=sse is
# not set by default (not supported on arm builds)
- # If -msse is not implicite set, it falls back to mfpmath=387
+ # If -msse is not implicitly set, it falls back to mfpmath=387
# and a compiler warning is issued (tested with gcc 4.8.4)
build.env.Append(CCFLAGS='-mfpmath=sse')
elif build.architecture_is_arm: