From 95cc9d49661bad35da47873beea18b3d60d0ef6d Mon Sep 17 00:00:00 2001 From: Stefano Sanfilippo Date: Fri, 28 Nov 2014 19:44:34 +0100 Subject: [PATCH] Adding -O2 to compiler command line. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 799d83c..fab8610 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ compile: bison Monicelli.ypp flex Monicelli.lpp g++ \ - -Wall -Wno-deprecated-register -std=c++11 -DYYDEBUG=0 \ + -Wall -Wno-deprecated-register -std=c++11 -DYYDEBUG=0 -O2 \ Parser.cpp lex.yy.cc Nodes.cpp main.cpp -o mcc graph: