Add -mssse3 if supported by the hardware

This commit is contained in:
Martin Kroeker 2020-10-13 11:57:04 +02:00 committed by GitHub
parent fecedc9c69
commit 5f60a32cac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -12,6 +12,10 @@ ifdef HAVE_SSE3
ifndef DYNAMIC_ARCH
CCOMMON_OPT += -msse3
FCOMMON_OPT += -msse3
ifdef HAVE_SSSE3
CCOMMON_OPT += -mssse3
FCOMMON_OPT += -mssse3
endif
endif
endif