diff options
author | owenlin@chromium.org <owenlin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-16 19:54:51 +0000 |
---|---|---|
committer | owenlin@chromium.org <owenlin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-16 19:54:51 +0000 |
commit | 1d07e92b5484360b2bbf8855c2ed29f5684c114c (patch) | |
tree | 21492547c2992d12da1d5c1ffbf9966d93a5e0c6 | |
parent | 927020dc6698242ff1c8e2a46dac52c6b0e4fdae (diff) | |
download | chromium_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.gypi | 1 |
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. |