Bug 1061269 - Do not try to build the SkBlitRow assembly implementation with clang-cl; r=snorp

clang-cl builds use ml.exe which is the MASM assembler, same as the one
we use for MSVC builds.  In that respect, clang-cl and gcc builds are
quite different.
This commit is contained in:
Ehsan Akhgari 2014-09-02 10:23:51 -04:00
parent 3081f6ca91
commit ec19e1ef85
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ if not CONFIG['INTEL_ARCHITECTURE'] and CONFIG['CPU_ARCH'] == 'arm' and CONFIG['
'trunk/src/opts/memset32_neon.S',
]
if CONFIG['INTEL_ARCHITECTURE'] and (CONFIG['GNU_CC'] or CONFIG['CLANG_CL']):
if CONFIG['INTEL_ARCHITECTURE'] and CONFIG['GNU_CC']:
if CONFIG['CPU_ARCH'] == 'x86_64':
SOURCES += [
'trunk/src/opts/SkBlitRow_opts_SSE4_x64_asm.S',

View File

@ -869,7 +869,7 @@ if not CONFIG['INTEL_ARCHITECTURE'] and CONFIG['CPU_ARCH'] == 'arm' and CONFIG['
'trunk/src/opts/memset32_neon.S',
]
if CONFIG['INTEL_ARCHITECTURE'] and (CONFIG['GNU_CC'] or CONFIG['CLANG_CL']):
if CONFIG['INTEL_ARCHITECTURE'] and CONFIG['GNU_CC']:
if CONFIG['CPU_ARCH'] == 'x86_64':
SOURCES += [
'trunk/src/opts/SkBlitRow_opts_SSE4_x64_asm.S',