From c5a60982ba01d765251c8f0aff6cf2c1c3fa4be8 Mon Sep 17 00:00:00 2001 From: "Taylor C. Richberger" Date: Tue, 12 Dec 2017 19:58:24 -0700 Subject: replace explicit std::vector ParseCLI with template, reduce optimization Optimization absolutely kills test build time. Dropping optimization level cuts compile time in less than half, and it still doesn't take long to run. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 5cb8feb..dc4a5ea 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ FLAGS += -std=c++11 ifdef DEBUG FLAGS += -ggdb -O0 else -FLAGS += -O2 +FLAGS += -O0 endif LIBS = -- cgit v1.2.1