Updated build to C++ 14

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon 2017-11-04 12:44:38 +00:00
parent c292fb552e
commit d408bfe022
3 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
LIB = libintel8080.a
CXXFLAGS = -Wall -std=c++11 -pipe -I ../inc -I ../../inc
CXXFLAGS = -Wall -std=c++14 -pipe -I ../inc -I ../../inc
CXXFILES = Disassembler.cpp Intel8080.cpp Profiler.cpp
@ -13,7 +13,7 @@ PCH = stdafx.h.gch
all: opt
opt: CXXFLAGS += -DNDEBUG -march=native -O2
opt: CXXFLAGS += -DNDEBUG -march=native -O3
opt: $(LIB)
debug: CXXFLAGS += -g -D_DEBUG

View File

@ -1,6 +1,6 @@
LIB = liblr35902.a
CXXFLAGS = -Wall -std=c++11 -pipe -I ../inc -I ../../inc
CXXFLAGS = -Wall -std=c++14 -pipe -I ../inc -I ../../inc
CXXFILES = CharacterDefinition.cpp Disassembler.cpp Display.cpp GameBoyBus.cpp IoRegisters.cpp LR35902.cpp ObjectAttribute.cpp Profiler.cpp
@ -13,7 +13,7 @@ PCH = stdafx.h.gch
all: opt
opt: CXXFLAGS += -DNDEBUG -march=native -O2
opt: CXXFLAGS += -DNDEBUG -march=native -O3
opt: $(LIB)
debug: CXXFLAGS += -g -D_DEBUG

View File

@ -1,6 +1,6 @@
LIB = libeightbit.a
CXXFLAGS = -Wall -std=c++11 -pipe -I ../inc
CXXFLAGS = -Wall -std=c++14 -pipe -I ../inc
CXXFILES = EventArgs.cpp InputOutput.cpp IntelProcessor.cpp Memory.cpp Processor.cpp
@ -13,7 +13,7 @@ PCH = stdafx.h.gch
all: opt
opt: CXXFLAGS += -DNDEBUG -march=native -O2
opt: CXXFLAGS += -DNDEBUG -march=native -O3
opt: $(LIB)
debug: CXXFLAGS += -g -D_DEBUG