From patchwork Fri Nov 27 21:18:52 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Andreas_F=C3=A4rber?= X-Patchwork-Id: 39641 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id B6FD51007D4 for ; Sat, 28 Nov 2009 08:19:55 +1100 (EST) Received: from localhost ([127.0.0.1]:53125 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NE8EK-0001Ge-EQ for incoming@patchwork.ozlabs.org; Fri, 27 Nov 2009 16:19:52 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NE8Do-0001Fs-Cu for qemu-devel@nongnu.org; Fri, 27 Nov 2009 16:19:20 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NE8Dj-00019E-Gz for qemu-devel@nongnu.org; Fri, 27 Nov 2009 16:19:19 -0500 Received: from [199.232.76.173] (port=54361 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NE8Dj-000192-Cq for qemu-devel@nongnu.org; Fri, 27 Nov 2009 16:19:15 -0500 Received: from fmmailgate02.web.de ([217.72.192.227]:58311) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NE8Di-0001pa-Uz for qemu-devel@nongnu.org; Fri, 27 Nov 2009 16:19:15 -0500 Received: from smtp05.web.de (fmsmtp05.dlan.cinetic.de [172.20.4.166]) by fmmailgate02.web.de (Postfix) with ESMTP id CC9C514512218; Fri, 27 Nov 2009 22:19:13 +0100 (CET) Received: from [84.148.123.116] (helo=[10.0.0.2]) by smtp05.web.de with asmtp (TLSv1:AES128-SHA:128) (WEB.DE 4.110 #314) id 1NE8Dh-0007Og-00; Fri, 27 Nov 2009 22:19:13 +0100 Message-Id: <6CB020B9-D3FA-4A12-85F7-2C23DEC0E3B5@web.de> From: Andreas Faerber To: QEMU Developers Mime-Version: 1.0 (Apple Message framework v936) Date: Fri, 27 Nov 2009 22:18:52 +0100 X-Mailer: Apple Mail (2.936) X-Sender: Andreas.Faerber@web.de X-Provags-ID: V01U2FsdGVkX18P1+Thq6m0B950FCtyPY3rpznN1KZ+X0mfqYDQ uVKkkHqmenMDBw35ShdNXIBJ7QjcMKUUdhQl4nae5HIBmKyLwP lILpwZ5crwtpYaidnC6A== X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.4-2.6 Cc: Subject: [Qemu-devel] [PATCH] Suppress optionrom build on Solaris x86 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org To avoid the build failing with: gcc -Wall -Wstrict-prototypes -Werror -fomit-frame-pointer -fno- builtin -I/export/home/andreas/QEMU/qemu -Wall -Wstrict-prototypes - Werror -fomit-frame-pointer -fno-builtin -I/export/home/andreas/QEMU/ qemu -c -o multiboot.o multiboot.S /var/tmp//ccd3aWyk.s: Assembler messages: /var/tmp//ccd3aWyk.s:15: Error: value of 512 too large for field of 1 bytes at 0000000000000002 gmake[1]: *** [multiboot.o] Error 1 disable recursion into pc-bios/optionrom, as done for Darwin already. Signed-off-by: Andreas Faerber --- configure | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure b/configure index 1223fc8..0c3f252 100755 --- a/configure +++ b/configure @@ -2103,7 +2103,7 @@ echo "TOOLS=$tools" >> $config_host_mak # Mac OS X ships with a broken assembler roms= if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \ - "$targetos" != "Darwin" -a \ + "$targetos" != "Darwin" -a "$targetos" != "SunOS" -a \ `expr "$target_list" : ".*softmmu.*"` != 0 ; then roms="optionrom" fi