mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2026-04-21 17:16:35 +00:00
Updated build to C++ 14
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
+2
-2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user