diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-05-21 21:22:59 +0300 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-05-21 21:22:59 +0300 |
commit | ec6bd8dea77478f32981a5df49f66ca2430ad19d (patch) | |
tree | 34171bca5f425beeb5e4de93a93eb54c1430ad5a /Makefile.target | |
parent | 2567f5796c38238d6f2055f074e347a0338140ce (diff) | |
download | qemu-ec6bd8dea77478f32981a5df49f66ca2430ad19d.tar.gz qemu-ec6bd8dea77478f32981a5df49f66ca2430ad19d.tar.bz2 qemu-ec6bd8dea77478f32981a5df49f66ca2430ad19d.zip |
Fix arm-softmmu breakage
Don't use whole-archive for hwlib or libqemu objects
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 4 |
1 files 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)) |