From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39568) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W3WFY-0003L7-6C for qemu-devel@nongnu.org; Wed, 15 Jan 2014 14:35:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W3WFR-00053v-WA for qemu-devel@nongnu.org; Wed, 15 Jan 2014 14:35:40 -0500 Received: from mail-la0-f43.google.com ([209.85.215.43]:56634) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W3WFR-00053j-IY for qemu-devel@nongnu.org; Wed, 15 Jan 2014 14:35:33 -0500 Received: by mail-la0-f43.google.com with SMTP id er20so1802835lab.30 for ; Wed, 15 Jan 2014 11:35:32 -0800 (PST) MIME-Version: 1.0 In-Reply-To: <1389775713-996-3-git-send-email-famz@redhat.com> References: <1389775713-996-1-git-send-email-famz@redhat.com> <1389775713-996-3-git-send-email-famz@redhat.com> From: Peter Maydell Date: Wed, 15 Jan 2014 19:35:12 +0000 Message-ID: Content-Type: text/plain; charset=UTF-8 Subject: Re: [Qemu-devel] [PATCH v16 2/9] rules.mak: allow per object cflags and libs List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Fam Zheng Cc: Kevin Wolf , Stefan Hajnoczi , Michael Tokarev , QEMU Developers , Alex Bligh , Paolo Bonzini , Miroslav Rezanina , =?UTF-8?Q?Llu=C3=ADs_Vilanova?= , Richard Henderson On 15 January 2014 08:48, Fam Zheng wrote: > Adds extract-libs in LINK to expand any "per object libs", the syntax to define > such a libs options is like: > > foo.o-libs := $(CURL_LIBS) > > in block/Makefile.objs. > > Similarly, > > foo.o-cflags := $(FOO_CFLAGS) > > is also supported. > > "foo.o" must be listed in a nested var (e.g. common-obj-y) to make the > option variables effective. > > Signed-off-by: Fam Zheng > Signed-off-by: Paolo Bonzini > --- > rules.mak | 19 ++++++++++++++++--- > 1 file changed, 16 insertions(+), 3 deletions(-) > > diff --git a/rules.mak b/rules.mak > index 7d27602..9398268 100644 > --- a/rules.mak > +++ b/rules.mak > @@ -21,15 +21,17 @@ QEMU_DGFLAGS += -MMD -MP -MT $@ -MF $(*D)/$(*F).d > # Same as -I$(SRC_PATH) -I., but for the nested source/object directories > QEMU_INCLUDES += -I$( > +extract-libs = $(strip $(foreach o,$1,$($o-libs))) > + > %.o: %.c > - $(call quiet-command,$(CC) $(QEMU_INCLUDES) $(QEMU_CFLAGS) $(QEMU_DGFLAGS) $(CFLAGS) -c -o $@ $<," CC $(TARGET_DIR)$@") > + $(call quiet-command,$(CC) $(QEMU_INCLUDES) $(QEMU_CFLAGS) $(QEMU_DGFLAGS) $(CFLAGS) $($@-cflags) -c -o $@ $<," CC $(TARGET_DIR)$@") Shouldn't this change also be made in the rules for compiling .cpp and .m files (which also use CFLAGS and could benefit from per-object flags) ? (For instance it would be nice if I could compile the libvixl C++ sources with a different set of flags.) thanks -- PMM