From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=52975 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PcmIT-0003E7-0k for qemu-devel@nongnu.org; Tue, 11 Jan 2011 17:02:33 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PcmIR-0001WM-Vy for qemu-devel@nongnu.org; Tue, 11 Jan 2011 17:02:32 -0500 Received: from mail-ey0-f173.google.com ([209.85.215.173]:39004) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PcmIR-0001W4-RW for qemu-devel@nongnu.org; Tue, 11 Jan 2011 17:02:31 -0500 Received: by eyg7 with SMTP id 7so6801925eyg.4 for ; Tue, 11 Jan 2011 14:02:30 -0800 (PST) Date: Tue, 11 Jan 2011 23:02:26 +0100 From: "Edgar E. Iglesias" Subject: Re: [Qemu-devel] [PATCH 1/9] target-sh4: switch sh4 to softfloat Message-ID: <20110111220226.GA14756@laped.lan> References: <1294779698-17694-1-git-send-email-aurelien@aurel32.net> <1294779698-17694-2-git-send-email-aurelien@aurel32.net> <20110111212208.GW6247@codesourcery.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: Aurelien Jarno , qemu-devel@nongnu.org, Nathan Froyd On Tue, Jan 11, 2011 at 03:35:33PM -0600, Peter Maydell wrote: > On 11 January 2011 15:22, Nathan Froyd wrote: > > On Tue, Jan 11, 2011 at 10:01:30PM +0100, Aurelien Jarno wrote: > >>  case "$target_arch2" in > >> -  alpha|arm|armeb|m68k|microblaze|mips|mipsel|mipsn32|mipsn32el|mips64|mips64el|ppc|ppc64|ppc64abi32|ppcemb|s390x|sparc|sparc64|sparc32plus) > >> +  alpha|arm|armeb|m68k|microblaze|mips|mipsel|mipsn32|mipsn32el|mips64|mips64el|ppc|ppc64|ppc64abi32|ppcemb|s390x|sh4|sh4eb|sparc|sparc64|sparc32plus) > >>      echo "CONFIG_SOFTFLOAT=y" >> $config_target_mak > >>      ;; > >>    *) > > > > This is obvious, I think...but it's also a little ridiculous.  Why not > > make everything use softfloat and dispense with this?  How much work > > would it be on the x86 side? > > If we don't want to do that I guess we could at least change to > > case "$target_arch2" in > i386|x86_64|cris) # I think this list is right :-) Hi, CRIS doesn't have an FPU so it can go aswell.. Cheers