Skip to content

Commit 5f60a32

Browse files
authored
Add -mssse3 if supported by the hardware
1 parent fecedc9 commit 5f60a32

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
@@ -12,6 +12,10 @@ ifdef HAVE_SSE3
1212
ifndef DYNAMIC_ARCH
1313
CCOMMON_OPT += -msse3
1414
FCOMMON_OPT += -msse3
15+
ifdef HAVE_SSSE3
16+
CCOMMON_OPT += -mssse3
17+
FCOMMON_OPT += -mssse3
18+
endif
1519
endif
1620
endif
1721

0 commit comments

Comments
 (0)