From ec6bd8dea77478f32981a5df49f66ca2430ad19d Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Thu, 21 May 2009 21:22:59 +0300 Subject: [PATCH] Fix arm-softmmu breakage Don't use whole-archive for hwlib or libqemu objects Signed-off-by: Blue Swirl --- Makefile.target | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.target b/Makefile.target index 4de29f831d..959765ee33 100644 --- a/Makefile.target +++ b/Makefile.target @@ -709,8 +709,8 @@ endif vl.o: qemu-options.h -$(QEMU_PROG): LIBS += $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS) -$(QEMU_PROG): ARLIBS=../libqemu_common.a libqemu.a $(HWLIB) +$(QEMU_PROG): LIBS += $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS) libqemu.a $(HWLIB) +$(QEMU_PROG): ARLIBS=../libqemu_common.a $(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a $(HWLIB) $(call LINK,$(OBJS)) -- 2.11.4.GIT