mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
build: Disable SSSE3
Apparently people are still using Phenoms in 2021. *sigh*
This commit is contained in:
parent
dd2823287a
commit
403af8820b
1 changed files with 2 additions and 2 deletions
|
@ -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'])
|
||||
|
|
Loading…
Add table
Reference in a new issue