From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36229) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dptFt-0004CO-3f for qemu-devel@nongnu.org; Thu, 07 Sep 2017 05:37:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dptFp-0007A7-Ux for qemu-devel@nongnu.org; Thu, 07 Sep 2017 05:37:49 -0400 Received: from mx1.redhat.com ([209.132.183.28]:54374) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dptFp-00079x-O0 for qemu-devel@nongnu.org; Thu, 07 Sep 2017 05:37:45 -0400 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id C58DB40431B for ; Thu, 7 Sep 2017 09:37:44 +0000 (UTC) Date: Thu, 7 Sep 2017 10:37:32 +0100 From: "Dr. David Alan Gilbert" Message-ID: <20170907093731.GF2098@work-vm> References: <20170907084230.26493-1-famz@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170907084230.26493-1-famz@redhat.com> Subject: Re: [Qemu-devel] [PATCH] buildsys: Move rdma libs to per object List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Fam Zheng Cc: qemu-devel@nongnu.org, Juan Quintela , Peter Xu * Fam Zheng (famz@redhat.com) wrote: > Signed-off-by: Fam Zheng OK, I've not actually got a preference as to whether it's per-object or not - I don't really see any advantage. But since it doesn't look like it'll break it; Reviewed-by: Dr. David Alan Gilbert > --- > configure | 2 +- > migration/Makefile.objs | 1 + > 2 files changed, 2 insertions(+), 1 deletion(-) > > diff --git a/configure b/configure > index fb7e34a901..470b8a085b 100755 > --- a/configure > +++ b/configure > @@ -2818,7 +2818,6 @@ EOF > rdma_libs="-lrdmacm -libverbs" > if compile_prog "" "$rdma_libs" ; then > rdma="yes" > - libs_softmmu="$libs_softmmu $rdma_libs" > else > if test "$rdma" = "yes" ; then > error_exit \ > @@ -6035,6 +6034,7 @@ echo "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak > > if test "$rdma" = "yes" ; then > echo "CONFIG_RDMA=y" >> $config_host_mak > + echo "RDMA_LIBS=$rdma_libs" >> $config_host_mak > fi > > if test "$have_rtnetlink" = "yes" ; then > diff --git a/migration/Makefile.objs b/migration/Makefile.objs > index 1c7770da46..99e038024d 100644 > --- a/migration/Makefile.objs > +++ b/migration/Makefile.objs > @@ -11,3 +11,4 @@ common-obj-$(CONFIG_RDMA) += rdma.o > > common-obj-$(CONFIG_LIVE_BLOCK_MIGRATION) += block.o > > +rdma.o-libs := $(RDMA_LIBS) > -- > 2.13.5 > -- Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK