diff options
author | Matt A. Tobin <email@mattatobin.com> | 2022-04-28 14:38:58 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2022-04-28 14:38:58 -0500 |
commit | 068d36f333126c67a4e9ea5e59cf99446b2e998c (patch) | |
tree | 356b126f49432e465bb07653d815648146df15de /libs | |
parent | 877c686eb0aa773de7d1914464a96a5f1981ecaa (diff) | |
download | aura-central-068d36f333126c67a4e9ea5e59cf99446b2e998c.tar.gz |
[Libs:Pixman] Use SSSE3 on Windows only
Diffstat (limited to 'libs')
-rw-r--r-- | libs/libpixman/moz.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/libpixman/moz.build b/libs/libpixman/moz.build index fee149331..26d1fd4c0 100644 --- a/libs/libpixman/moz.build +++ b/libs/libpixman/moz.build @@ -77,7 +77,8 @@ use_arm_simd_gcc = False use_arm_neon_gcc = False if '86' in CONFIG['OS_TEST']: use_sse2 = True - use_ssse3 = True + if CONFIG['_MSC_VER']: + use_ssse3 = True if '64' not in CONFIG['OS_TEST']: if CONFIG['_MSC_VER']: use_mmx = True |