From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:59774) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UHbS4-0008EM-Hj for qemu-devel@nongnu.org; Mon, 18 Mar 2013 10:54:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UHbS2-0002LC-Gi for qemu-devel@nongnu.org; Mon, 18 Mar 2013 10:54:16 -0400 Received: from mail-vc0-f174.google.com ([209.85.220.174]:51274) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UHbS2-0002L2-Ch for qemu-devel@nongnu.org; Mon, 18 Mar 2013 10:54:14 -0400 Received: by mail-vc0-f174.google.com with SMTP id hx10so3013813vcb.33 for ; Mon, 18 Mar 2013 07:54:13 -0700 (PDT) Sender: Paolo Bonzini Message-ID: <51472A91.2040209@redhat.com> Date: Mon, 18 Mar 2013 15:54:09 +0100 From: Paolo Bonzini MIME-Version: 1.0 References: <1363612272-13713-1-git-send-email-alevy@redhat.com> <1363612272-13713-9-git-send-email-alevy@redhat.com> In-Reply-To: <1363612272-13713-9-git-send-email-alevy@redhat.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PATCH 08/26] libcacard: fix mingw64 cross-compilation List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alon Levy Cc: mlureau@redhat.com, qemu-devel@nongnu.org Il 18/03/2013 14:10, Alon Levy ha scritto: > From: Marc-André Lureau > > Compile and link with version.lo > > Signed-off-by: Marc-André Lureau > --- > Makefile | 8 ++++++-- > rules.mak | 3 ++- > 2 files changed, 8 insertions(+), 3 deletions(-) > > diff --git a/Makefile b/Makefile > index 6915178..10abfee 100644 > --- a/Makefile > +++ b/Makefile > @@ -151,11 +151,15 @@ recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES) > > bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS) > > -version.o: $(SRC_PATH)/version.rc config-host.h > +version.o: $(SRC_PATH)/version.rc config-host.h | version.lo > $(call quiet-command,$(WINDRES) -I. -o $@ $<," RC $(TARGET_DIR)$@") > +version.lo: $(SRC_PATH)/version.rc config-host.h > + $(call quiet-command,$(LIBTOOL) --mode=compile --tag=RC $(WINDRES) -I. -o $@ $<,"lt RC $(TARGET_DIR)$@") > > version-obj-$(CONFIG_WIN32) += version.o > -Makefile: $(version-obj-y) > +version-lobj-$(CONFIG_WIN32) += $(if $(LIBTOOL),version.lo) > +Makefile: $(version-obj-y) $(version-lobj-y) > + > > ###################################################################### > # Build libraries > diff --git a/rules.mak b/rules.mak > index 36aba2d..292a422 100644 > --- a/rules.mak > +++ b/rules.mak > @@ -35,7 +35,8 @@ LIBTOOL += $(if $(V),,--quiet) > LINK = $(call quiet-command,\ > $(if $(filter %.lo %.la,$^),$(LIBTOOL) --mode=link --tag=CC \ > )$(CC) $(QEMU_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ \ > - $(sort $(filter %.o, $1)) $(filter-out %.o, $1) $(version-obj-y) \ > + $(sort $(filter %.o, $1)) $(filter-out %.o, $1) \ > + $(if $(filter %.lo %.la,$^),$(version-lobj-y),$(version-obj-y)) \ > $(if $(filter %.lo %.la,$^),$(LIBTOOLFLAGS)) \ > $(LIBS),$(if $(filter %.lo %.la,$^),"lt LINK ", " LINK ")"$(TARGET_DIR)$@") > endif > Reviewed-by: Paolo Bonzini