From e3c9d70acc477d1da68eda086e561e2ace6361ac Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Fri, 11 Feb 2022 16:06:25 -0800 Subject: [PATCH] Added to existing PG_CFLAGS --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a593757..84aee33 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ endif # For auto-vectorization: # - GCC (needs -ftree-vectorize OR -O3) - https://gcc.gnu.org/projects/tree-ssa/vectorization.html # - Clang (could use pragma instead) - https://llvm.org/docs/Vectorizers.html -PG_CFLAGS = $(OPTFLAGS) -ftree-vectorize -fassociative-math -fno-signed-zeros -fno-trapping-math +PG_CFLAGS += $(OPTFLAGS) -ftree-vectorize -fassociative-math -fno-signed-zeros -fno-trapping-math # Debug GCC auto-vectorization # PG_CFLAGS += -fopt-info-vec