Archived
1
0
Fork 0

Enabled O3 optimizations

This commit is contained in:
Brandon Rozek 2018-09-27 23:33:48 -04:00
parent f14d4e4bc2
commit 0bc8eaa46c

View file

@ -1,4 +1,4 @@
GPP = g++ -Wall -std=c++17
GPP = g++ -Wall -std=c++17 -O3
sloth: src/main.cpp src/parser/lex.yy.o src/parser/parser.tab.o src/variables/environment.o src/variables/variable.o src/variables/value.o src/operations/node.o src/operations/operators.o src/string.o src/shell.o
$(GPP) src/main.cpp src/parser/lex.yy.o src/parser/parser.tab.o src/variables/environment.o src/variables/variable.o src/variables/value.o src/operations/node.o src/operations/operators.o src/string.o src/shell.o -ledit -o sloth