From e6d5596e05cfcf5a129ad2321c0196efe4435966 Mon Sep 17 00:00:00 2001 From: zawz Date: Thu, 13 Feb 2020 23:17:02 +0100 Subject: [PATCH] Enable optimisations --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 38e712f..d89584d 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ NAME = zupdate LDFLAGS = -lpthread CC=g++ -CXXFLAGS= -I$(IDIR) -Wall -std=c++17 -fopenmp +CXXFLAGS= -I$(IDIR) -Wall -std=c++17 -fopenmp -O2 ifeq ($(DEBUG),true) CXXFLAGS += -g endif