build: Disable SSSE3

Apparently people are still using Phenoms in 2021. *sigh*
This commit is contained in:
Joshua Ashton 2021-03-27 13:23:27 +00:00
parent dd2823287a
commit 403af8820b
No known key found for this signature in database
GPG Key ID: C85A08669126BE8D
1 changed files with 2 additions and 2 deletions

View File

@ -71,8 +71,8 @@ if cpu_family == 'x86'
if dxvk_compiler.has_link_argument('-Wl,--enable-stdcall-fixup')
add_global_link_arguments('-Wl,--enable-stdcall-fixup', language: 'cpp')
endif
if dxvk_compiler.has_argument('-msse') and dxvk_compiler.has_argument('-msse2') and dxvk_compiler.has_argument('-msse3') and dxvk_compiler.has_argument('-mssse3')
add_project_arguments('-msse', '-msse2', '-msse3', '-mssse3', language: ['c', 'cpp'])
if dxvk_compiler.has_argument('-msse') and dxvk_compiler.has_argument('-msse2') and dxvk_compiler.has_argument('-msse3')
add_project_arguments('-msse', '-msse2', '-msse3', language: ['c', 'cpp'])
endif
if dxvk_compiler.has_argument('-mfpmath=sse')
add_project_arguments('-mfpmath=sse', language: ['c', 'cpp'])