From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57052) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VDxyu-0004Jm-6y for qemu-devel@nongnu.org; Mon, 26 Aug 2013 10:41:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VDxyo-00035T-D8 for qemu-devel@nongnu.org; Mon, 26 Aug 2013 10:41:24 -0400 Received: from mail-ye0-x22f.google.com ([2607:f8b0:4002:c04::22f]:53991) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VDxyo-00035P-9I for qemu-devel@nongnu.org; Mon, 26 Aug 2013 10:41:18 -0400 Received: by mail-ye0-f175.google.com with SMTP id r10so865379yen.34 for ; Mon, 26 Aug 2013 07:41:17 -0700 (PDT) Sender: Richard Henderson Message-ID: <521B6909.9020708@twiddle.net> Date: Mon, 26 Aug 2013 07:41:13 -0700 From: Richard Henderson MIME-Version: 1.0 References: <1377471536-12423-1-git-send-email-akoskovacs@gmx.com> <1377471536-12423-7-git-send-email-akoskovacs@gmx.com> In-Reply-To: <1377471536-12423-7-git-send-email-akoskovacs@gmx.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PATCH 06/47] hw/alpha/Makefile.objs: Build objects depending on CLIPPER List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?B?w4Frb3MgS292w6Fjcw==?= Cc: qemu-devel@nongnu.org On 08/25/2013 03:58 PM, Ákos Kovács wrote: > Set CONFIG_CLIPPER as default for default-configs/alpha-softmmu.mak > > Signed-off-by: Ákos Kovács > --- > default-configs/alpha-softmmu.mak | 2 ++ > hw/alpha/Makefile.objs | 2 +- > 2 files changed, 3 insertions(+), 1 deletion(-) > > diff --git a/default-configs/alpha-softmmu.mak b/default-configs/alpha-softmmu.mak > index bc07600..1e8bbff 100644 > --- a/default-configs/alpha-softmmu.mak > +++ b/default-configs/alpha-softmmu.mak > @@ -15,3 +15,5 @@ CONFIG_IDE_CMD646=y > CONFIG_I8259=y > CONFIG_MC146818RTC=y > CONFIG_ISA_TESTDEV=y > + > +CONFIG_CLIPPER=y > diff --git a/hw/alpha/Makefile.objs b/hw/alpha/Makefile.objs > index 5c74275..0a6ade5 100644 > --- a/hw/alpha/Makefile.objs > +++ b/hw/alpha/Makefile.objs > @@ -1 +1 @@ > -obj-y += dp264.o pci.o typhoon.o > +obj-$(CONFIG_CLIPPER) += dp264.o pci.o typhoon.o > I don't understand the point of this. There is one alpha emulation; if you disable it you're left with a program that's not useful. So why the configuration for it at all? r~