-std=c++11 added to compile flags to solve clang warnings

This commit is contained in:
Patrick Lipka 2021-12-17 10:25:32 +01:00
parent 525534a5de
commit 7b7a4dcc0c
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
-include config.out
CXX ?= g++
CXXFLAGS := -g -Wall -pedantic
CXXFLAGS := -std=c++11 -g -Wall -pedantic
OBJFLAGS := $(CXXFLAGS) -c
LDFLAGS := -lreadline