changed to std11 c++ version

This commit is contained in:
mariusmonton 2018-09-27 14:58:39 +02:00
parent af2f6d6bd6
commit f938bfad4e
1 changed files with 2 additions and 2 deletions

View File

@ -5,11 +5,11 @@ TARGET_ARCH=linux64
CC = g++
# compiling flags here
CFLAGS = -Wall -I. -O3
CFLAGS = -Wall -I. -O3 -std=c++11
LINKER = g++
# linking flags here
LFLAGS = -Wall -I. -lm
LFLAGS = -Wall -I. -lm
LIBS = -lsystemc -lm $(EXTRA_LIBS)