From 24baf3524a54ac16067d76c3194d8f7dd14fb996 Mon Sep 17 00:00:00 2001 From: Bruno Raoult Date: Fri, 23 Feb 2024 05:47:23 +0100 Subject: [PATCH] switch to -O3 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 93c9c02..f06dc48 100644 --- a/Makefile +++ b/Makefile @@ -56,7 +56,7 @@ CPPFLAGS := $(strip $(CPPFLAGS)) ##################################### compiler flags CFLAGS := -std=gnu11 -CFLAGS += -O2 +CFLAGS += -O3 CFLAGS += -g CFLAGS += -Wall CFLAGS += -Wextra @@ -248,7 +248,7 @@ cleanccls: # maybe run cleanobj cleanlibobj in commands ? $(CCLSCMDS): cleanobj $(SRC) | $(CCLSROOT) @echo "Generating ccls compile commands file ($@)." - @$(BEAR) -- make test + @$(BEAR) -- $(MAKE) test ##################################### valgrind (mem check) .PHONY: memcheck