mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-02-24 17:29:06 +00:00
Updated build to C++ 14
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
parent
c292fb552e
commit
d408bfe022
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user