From e22eee97dacc1f5d87e597d68b20f1f889183d0a Mon Sep 17 00:00:00 2001 From: karl Date: Sat, 17 Oct 2020 00:50:27 +0200 Subject: [PATCH] Set O3 optimization flag Even faster now! --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index dd18365..c602776 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CXX = g++ -CXXFLAGS = -Wall +CXXFLAGS = -Wall -O3 mc: main.o Timing.o $(CXX) $(CXXFLAGS) -o mc main.o Timing.o