aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp/common_conditions.gypi
diff options
context:
space:
mode:
authorGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-05-20 19:42:03 +0000
committerGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-05-20 19:42:03 +0000
commit815d3600e928a12d5b7de117118d07630554bc52 (patch)
tree15361cb84d145fde51d830bc389ec8057cf5ce3c /gyp/common_conditions.gypi
parent6a106ce251bd531ab6792d72ab50770149b3675e (diff)
Remove -mfpmath=sse for clang, which does it automatically and sometimes is annoyed by it.
BUG=skia: NOTREECHECKS=true R=mtklein@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/296793003 git-svn-id: http://skia.googlecode.com/svn/trunk@14812 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'gyp/common_conditions.gypi')
-rw-r--r--gyp/common_conditions.gypi3
1 files changed, 3 insertions, 0 deletions
diff --git a/gyp/common_conditions.gypi b/gyp/common_conditions.gypi
index a745c706da..20911cb42f 100644
--- a/gyp/common_conditions.gypi
+++ b/gyp/common_conditions.gypi
@@ -435,6 +435,9 @@
# Extra warnings we like but that only Clang knows about.
'-Wstring-conversion',
],
+ 'cflags!': [
+ '-mfpmath=sse', # Clang doesn't need to be told this, and sometimes gets confused.
+ ],
}],
[ 'skia_keep_frame_pointer', {
'cflags': [ '-fno-omit-frame-pointer' ],