Skip to content

Commit ca160bb

Browse files
authored
Add -msse4.1 when SSE4.1 is supported
1 parent c9c3ae0 commit ca160bb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Makefile.x86_64

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ ifdef HAVE_SSSE3
1616
CCOMMON_OPT += -mssse3
1717
FCOMMON_OPT += -mssse3
1818
endif
19+
ifdef HAVE_SSE4_1
20+
CCOMMON_OPT += -msse4.1
21+
FCOMMON_OPT += -msse4.1
22+
endif
1923
endif
2024
endif
2125

0 commit comments

Comments
 (0)