diff options
author | rankaiyx <rankaiyx@rankaiyx.com> | 2023-06-10 14:41:59 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-10 09:41:59 +0300 |
commit | 555275a693843273759230547001f9ae07fb537e (patch) | |
tree | 0c3e9f1d8c21aa1d83884875eec1ea73a4085149 /Makefile | |
parent | 98ed16557432d7a5179c57eddcc3a08a7ae6d54d (diff) |
make : add SSSE3 compilation use case (#1659)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -107,6 +107,10 @@ ifeq ($(UNAME_M),$(filter $(UNAME_M),x86_64 i686)) # Usage AVX-only #CFLAGS += -mfma -mf16c -mavx #CXXFLAGS += -mfma -mf16c -mavx + + # Usage SSSE3-only (Not is SSE3!) + #CFLAGS += -mssse3 + #CXXFLAGS += -mssse3 endif ifneq ($(filter ppc64%,$(UNAME_M)),) |