From 8b5732a3982d55dff94ca5cd006ca80fdbc7a6f7 Mon Sep 17 00:00:00 2001 From: Brandon Rozek Date: Wed, 26 Sep 2018 19:17:08 -0400 Subject: [PATCH] Switched to C++17 compiler --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ee1607b..18048db 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -GPP = g++ -Wall +GPP = g++ -Wall -std=c++17 sloth: src/main.c 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.c 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