Browse Source

Add -mssse3 if supported by the hardware

tags/v0.3.11^2
Martin Kroeker GitHub 5 years ago
parent
commit
5f60a32cac
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      Makefile.x86_64

+ 4
- 0
Makefile.x86_64 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



Loading…
Cancel
Save