From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60903) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e1vy4-0006W5-AP for qemu-devel@nongnu.org; Tue, 10 Oct 2017 10:57:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e1vy1-0002Vf-8q for qemu-devel@nongnu.org; Tue, 10 Oct 2017 10:57:12 -0400 References: <20171010102655.23322-1-pbonzini@redhat.com> From: Paolo Bonzini Message-ID: <11c27aeb-2f07-665a-bb2a-1a47c46bca19@redhat.com> Date: Tue, 10 Oct 2017 16:57:00 +0200 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] build: remove CONFIG_LIBDECNUMBER List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Richard Henderson , qemu-devel@nongnu.org Cc: qemu-ppc@nongnu.org On 10/10/2017 16:47, Richard Henderson wrote: > On 10/10/2017 03:26 AM, Paolo Bonzini wrote: >> It is used only by PPC TCG, so just move it in target/ppc/Makefile.objs >> >> Signed-off-by: Paolo Bonzini > > FWIW, it *should* be used by target/s390x as well. > >> diff --git a/target/ppc/Makefile.objs b/target/ppc/Makefile.objs >> index f92ba67ebd..ba61012bef 100644 >> --- a/target/ppc/Makefile.objs >> +++ b/target/ppc/Makefile.objs >> @@ -15,5 +15,10 @@ obj-y += int_helper.o >> obj-y += timebase_helper.o >> obj-y += misc_helper.o >> obj-y += mem_helper.o >> +obj-y += ../../libdecnumber/decContext.o >> +obj-y += ../../libdecnumber/decNumber.o >> +obj-y += ../../libdecnumber/dpd/decimal32.o >> +obj-y += ../../libdecnumber/dpd/decimal64.o >> +obj-y += ../../libdecnumber/dpd/decimal128.o >> obj-$(CONFIG_USER_ONLY) += user_only_helper.o >> obj-y += gdbstub.o > > I suppose this isn't horrible, if it needed to be replicated. If it has to be replicated, it should be obj-y += ../../libdecnumber/ I'll post v2. Paolo