From a018a9eeefdfb89a853ee27d7d338215b534d2ac Mon Sep 17 00:00:00 2001 From: zawz Date: Thu, 13 Feb 2020 23:15:35 +0100 Subject: [PATCH] Enable optimisations --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9d02f0c..d99c484 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ ODIR_SHARED=obj_so NAME = libztd CC=g++ -CXXFLAGS= -I$(IDIR) -Wall -pedantic -std=c++17 +CXXFLAGS= -I$(IDIR) -Wall -pedantic -std=c++17 -O2 ifeq ($(DEBUG),true) CXXFLAGS += -g endif