From 276d79b1fa139756477e4acdb6b5fac51f2acb90 Mon Sep 17 00:00:00 2001 From: Fabrice Date: Mon, 23 Mar 2026 08:12:21 +0100 Subject: adding sse2 path --- makefile | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'makefile') diff --git a/makefile b/makefile index dacbbe5..982698c 100644 --- a/makefile +++ b/makefile @@ -5,6 +5,7 @@ CM_OPT_ASSERT_PATH ?= CM_OPT_RELEASE ?= 1 CM_OPT_ENABLE_UBSAN ?= 0 CM_OPT_ENABLE_ASAN ?= 0 +CM_OPT_ENABLE_SSE2 ?= 0 CC ?= gcc @@ -39,6 +40,10 @@ ifeq ($(CM_OPT_ENABLE_ASAN),1) CM_CC_FLAGS += -fsanitize=address endif +ifeq ($(CM_OPT_ENABLE_SSE2),1) + CM_CC_FLAGS += -DCM_SSE2=1 +endif + .PHONY: all all: $(CM_OBJECT) $(CM_DEMO) -- cgit v1.2.3