diff options
author | mtklein <mtklein@chromium.org> | 2014-06-27 11:28:06 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-06-27 11:28:06 -0700 |
commit | 479fbaf3bd65346c8dba2363aadde3b57bddd195 (patch) | |
tree | 7280761fbc052f568f2373c6cf06b44435631e63 | |
parent | 4f96ab36180489748f4e9bb249d773414ef0d6cb (diff) |
Disable SSE4 code.
Chrome canary failing to link chrome:
http://108.170.220.120:10115/builders/Canary-Chrome-Ubuntu13.10-Ninja-x86_64-ToT/builds/1009/steps/BuildChrome/logs/stdio
BUG=skia:
NOTRY=true
R=mtklein@google.com, rmistry@google.com
Author: mtklein@chromium.org
Review URL: https://codereview.chromium.org/361493002
-rw-r--r-- | src/opts/SkBlitRow_opts_SSE4.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/opts/SkBlitRow_opts_SSE4.h b/src/opts/SkBlitRow_opts_SSE4.h index 6c6276eae0..b6ab140e0a 100644 --- a/src/opts/SkBlitRow_opts_SSE4.h +++ b/src/opts/SkBlitRow_opts_SSE4.h @@ -18,7 +18,9 @@ extern "C" void S32A_Opaque_BlitRow32_SSE4_asm(SkPMColor* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT src, int count, U8CPU alpha); -#define SK_ATT_ASM_SUPPORTED +// Temporarily disabled. Chrome canary bot fails to link chrome with error: +// lib/libskia.so: error: undefined reference to 'S32A_Opaque_BlitRow32_SSE4_asm' +//#define SK_ATT_ASM_SUPPORTED #endif #endif |