From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MLZRa-0004H9-LY for qemu-devel@nongnu.org; Tue, 30 Jun 2009 05:16:02 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MLZRV-0004Gb-Bs for qemu-devel@nongnu.org; Tue, 30 Jun 2009 05:16:01 -0400 Received: from [199.232.76.173] (port=40587 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MLZRU-0004GJ-WB for qemu-devel@nongnu.org; Tue, 30 Jun 2009 05:15:57 -0400 Received: from va3ehsobe004.messaging.microsoft.com ([216.32.180.14]:23402 helo=VA3EHSOBE004.bigfish.com) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_ARCFOUR_MD5:16) (Exim 4.60) (envelope-from ) id 1MLZRU-0008PB-PL for qemu-devel@nongnu.org; Tue, 30 Jun 2009 05:15:56 -0400 Received: from mail61-va3 (localhost.localdomain [127.0.0.1]) by mail61-va3-R.bigfish.com (Postfix) with ESMTP id C90201360321 for ; Tue, 30 Jun 2009 09:15:55 +0000 (UTC) Received: from svlb1extmailp02.amd.com (unknown [139.95.251.11]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail61-va3.bigfish.com (Postfix) with ESMTP id 79380DC0056 for ; Tue, 30 Jun 2009 09:15:53 +0000 (UTC) Received: from svlb1twp01.amd.com ([139.95.250.34]) by svlb1extmailp02.amd.com (Switch-3.2.7/Switch-3.2.7) with ESMTP id n5U9Flv3021324 for ; Tue, 30 Jun 2009 02:15:50 -0700 Received: from SSVLEXBH2.amd.com (ssvlexbh2.amd.com [139.95.53.183]) by svlb1twp01.amd.com (Tumbleweed MailGate 3.5.1) with ESMTP id 27FEF88493D for ; Tue, 30 Jun 2009 02:15:36 -0700 (PDT) From: Christoph Egger Date: Tue, 30 Jun 2009 11:15:33 +0200 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="Boundary-00=_2edSKeqr3l/lc5w" Message-ID: <200906301115.34111.Christoph.Egger@amd.com> Subject: [Qemu-devel] [PATCH] buildfix: unknown option "-Wno-error=uninitialized" List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org --Boundary-00=_2edSKeqr3l/lc5w Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi! Attached patch fixes the build error I get on NetBSD: (NetBSD comes with gcc 4.1.3) cc1: error: unrecognized command line option "-Wno-error=uninitialized" Signed-off-by: Christoph Egger -- ---to satisfy European Law for business letters: Advanced Micro Devices GmbH Karl-Hammerschmidt-Str. 34, 85609 Dornach b. Muenchen Geschaeftsfuehrer: Thomas M. McCoy, Giuliano Meroni Sitz: Dornach, Gemeinde Aschheim, Landkreis Muenchen Registergericht Muenchen, HRB Nr. 43632 --Boundary-00=_2edSKeqr3l/lc5w Content-Type: text/x-diff; charset="us-ascii"; name="qemu_rules.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="qemu_rules.diff" diff --git a/rules.mak b/rules.mak index defee1d..8561289 100644 --- a/rules.mak +++ b/rules.mak @@ -1,6 +1,6 @@ %.o: %.c - $(call quiet-command,$(CC) $(CPPFLAGS) $(CFLAGS) -Werror -Wno-error=uninitialized -c -o $@ $<," CC $(TARGET_DIR)$@") + $(call quiet-command,$(CC) $(CPPFLAGS) $(CFLAGS) -Werror -c -o $@ $<," CC $(TARGET_DIR)$@") %.o: %.S $(call quiet-command,$(CC) $(CPPFLAGS) -c -o $@ $<," AS $(TARGET_DIR)$@") --Boundary-00=_2edSKeqr3l/lc5w--