Add -msse4.1 when SSE4.1 is supported

This commit is contained in:
Martin Kroeker
2020-10-14 19:18:07 +02:00
committed by GitHub
parent c9c3ae07af
commit ca160bb440

View File

@@ -16,6 +16,10 @@ ifdef HAVE_SSSE3
CCOMMON_OPT += -mssse3
FCOMMON_OPT += -mssse3
endif
ifdef HAVE_SSE4_1
CCOMMON_OPT += -msse4.1
FCOMMON_OPT += -msse4.1
endif
endif
endif