summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorowenlin@chromium.org <owenlin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-16 19:54:51 +0000
committerowenlin@chromium.org <owenlin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-16 19:54:51 +0000
commit1d07e92b5484360b2bbf8855c2ed29f5684c114c (patch)
tree21492547c2992d12da1d5c1ffbf9966d93a5e0c6
parent927020dc6698242ff1c8e2a46dac52c6b0e4fdae (diff)
downloadchromium_src-1d07e92b5484360b2bbf8855c2ed29f5684c114c.zip
chromium_src-1d07e92b5484360b2bbf8855c2ed29f5684c114c.tar.gz
chromium_src-1d07e92b5484360b2bbf8855c2ed29f5684c114c.tar.bz2
Add the "mfpmath=sse" compiler flag for ChromeOS devices.
This is to preventng floating-point computations in the 80-bit precision on x87. Please see more details in: http://codereview.chromium.org/42340/patch/64/2085 BUG=261358 TEST=Play videos on Parrot Review URL: https://chromiumcodereview.appspot.com/23181007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@218068 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--build/common.gypi1
1 files changed, 1 insertions, 0 deletions
diff --git a/build/common.gypi b/build/common.gypi
index df25eb4..fd8a6b8 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -2986,6 +2986,7 @@
['chromeos==1 and disable_sse2==0', {
'cflags': [
'-msse2',
+ '-mfpmath=sse',
],
}],
# Use gold linker for Android ia32 target.