mirror of
https://github.com/holub/mame
synced 2025-07-03 00:56:03 +03:00
Fix build on OSX
This commit is contained in:
parent
98c6a6d5cb
commit
7b83547d61
2
makefile
2
makefile
@ -949,7 +949,7 @@ ifeq ($(TARGETOS),emscripten)
|
||||
# Emscripten's linker seems to be stricter about the ordering of files
|
||||
$(LD) $(LDFLAGS) $(LDFLAGSEMULATOR) $(VERSIONOBJ) -Wl,--start-group $(EMULATOROBJ) -Wl,--end-group $(LIBS) -o $@
|
||||
else
|
||||
$(LD) $(LDFLAGS) $(LDFLAGSEMULATOR) $^ $(LIBS) -o $@
|
||||
$(LD) $(LDFLAGS) $(LDFLAGSEMULATOR) $(VERSIONOBJ) $(EMULATOROBJ) $(LIBS) -o $@
|
||||
endif
|
||||
ifeq ($(TARGETOS),win32)
|
||||
ifdef SYMBOLS
|
||||
|
@ -67,12 +67,11 @@ BUSES += MIDI
|
||||
#-------------------------------------------------
|
||||
|
||||
DRVLIBS = \
|
||||
$(EMUDRIVERS)/emudummy.o \
|
||||
$(LDPOBJ)/ldplayer.o \
|
||||
$(EMUDRIVERS)/emudummy.o
|
||||
|
||||
|
||||
#-------------------------------------------------
|
||||
# layout dependencies
|
||||
#-------------------------------------------------
|
||||
|
||||
$(LDPOBJ)/ldplayer.o: $(LAYOUT)/pr8210.lh \
|
||||
$(LDPOBJ)/ldplayer.o: $(LAYOUT)/pr8210.lh
|
||||
|
Loading…
Reference in New Issue
Block a user