Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
INCDIRS = -Iinclude
CXX = skm g++ $(INCDIRS)
CXX = skm g++ $(INCDIRS) -Ofast
src = $(wildcard src/*.cpp)
obj = $(src:.cpp=.o)

Expand All @@ -14,11 +14,9 @@ else
endif
endif

OSFLAGS = -O3

ArcadeMachine: $(obj)
-.scripts/generate-stats.sh
$(CXX) -o $@ $^ $(LDFLAGS) $(OSFLAGS)
$(CXX) -o $@ $^ $(LDFLAGS)

clean:
rm $(obj)
2 changes: 1 addition & 1 deletion include/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#define ARCADE_MACHINE_PATH_SEP "/"
#endif

#ifdef __arm__
#if defined(__arm__) || defined(__aarch64__)
#define ARCADE_MACHINE_INSTRUCTION_SET "arm"
#else
#define ARCADE_MACHINE_INSTRUCTION_SET "x86"
Expand Down