Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Libretro
flycast
Commits
64b1f929
Commit
64b1f929
authored
Sep 10, 2017
by
Stefan
Committed by
GitHub
Sep 10, 2017
Browse files
Makefile.common: always add rec_arm.cpp if ARCH is arm
We need rec_arm.cpp even if no arm dynarec is used.
parent
0e5c1466
Changes
1
Hide whitespace changes
Inline
Side-by-side
Makefile.common
View file @
64b1f929
...
...
@@ -127,7 +127,6 @@ endif
ifeq
($(WITH_DYNAREC), arm)
DYNAREC_USED
=
1
SOURCES_CXX
+=
$(CORE_DIR)
/rec-ARM/rec_arm.cpp
SOURCES_ASM
+=
$(CORE_DIR)
/rec-ARM/ngen_arm.S
endif
ifeq
($(DYNAREC_USED),1)
...
...
@@ -140,6 +139,10 @@ SOURCES_CXX += $(CORE_DIR)/hw/sh4/dyna/decoder.cpp \
endif
ifneq
(,$(findstring arm, $(ARCH)))
SOURCES_ASM
+=
$(CORE_DIR)
/rec-ARM/ngen_arm.S
endif
SOURCES_CXX
+=
$(CORE_DIR)
/libretro/libretro.cpp
\
$(CORE_DIR)
/libretro/common.cpp
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment