Commit ec6bd8dea77478f32981a5df49f66ca2430ad19d
1 parent
2567f579
Fix arm-softmmu breakage
Don't use whole-archive for hwlib or libqemu objects Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Showing
1 changed file
with
2 additions
and
2 deletions
Makefile.target
| @@ -709,8 +709,8 @@ endif | @@ -709,8 +709,8 @@ endif | ||
| 709 | 709 | ||
| 710 | vl.o: qemu-options.h | 710 | vl.o: qemu-options.h |
| 711 | 711 | ||
| 712 | -$(QEMU_PROG): LIBS += $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS) | ||
| 713 | -$(QEMU_PROG): ARLIBS=../libqemu_common.a libqemu.a $(HWLIB) | 712 | +$(QEMU_PROG): LIBS += $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS) libqemu.a $(HWLIB) |
| 713 | +$(QEMU_PROG): ARLIBS=../libqemu_common.a | ||
| 714 | $(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a $(HWLIB) | 714 | $(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a $(HWLIB) |
| 715 | $(call LINK,$(OBJS)) | 715 | $(call LINK,$(OBJS)) |
| 716 | 716 |