From 62ddbc6cd9c3e9dc86c9ffe213ed9f388f76d8fc Mon Sep 17 00:00:00 2001 From: rankaiyx Date: Thu, 1 Jun 2023 08:46:07 +0800 Subject: [PATCH] Update Makefile to add SSSE3 compilation use cases --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 8e8d426c5d6bf..fed5d3e9670ae 100644 --- a/Makefile +++ b/Makefile @@ -104,6 +104,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)),) POWER9_M := $(shell grep "POWER9" /proc/cpuinfo)