From owner-svn-src-head@FreeBSD.ORG Sat Dec 15 21:52:08 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1F9D34F4 for ; Sat, 15 Dec 2012 21:52:08 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-lb0-f182.google.com (mail-lb0-f182.google.com [209.85.217.182]) by mx1.freebsd.org (Postfix) with ESMTP id 8BF648FC1A for ; Sat, 15 Dec 2012 21:52:07 +0000 (UTC) Received: by mail-lb0-f182.google.com with SMTP id go10so3710859lbb.13 for ; Sat, 15 Dec 2012 13:52:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=HfXy1gBGWim4JhhW/BUziheRtFAcEk2umNaMGAUMW5w=; b=n3coRFwscLizGxaamtSDzIPp71YRAAsWVuy9TiI31qMR+sBwuPX8R2ezO6aLmRMp0L bV22enrOgUBpqf1bdQjivoI7kOvpDGXimpWCO449j6XZYnWzCallPh+CbKwTzOQRCJ8y PJLHnfembKKnvPIwlpMsNKOS7mJ3L5bcwQToo= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:x-gm-message-state; bh=HfXy1gBGWim4JhhW/BUziheRtFAcEk2umNaMGAUMW5w=; b=bTrDBKYPqrPx2IIG8aLT8nexh3qcSAVxUYtFprt9gXAk2PktDpbSRDb0ANLfO705Rc NoC6ckY6GfNdFnSHO6D7Vo//wViTQAAKyDRES8eXaUVjHqi8cXUL3yw2GDjYewewrIdp MxROCGhtPjd6482t2xJ6SLF2jIiDkEoewk6DDOdscKbcpyUdWP57zpalAAHm7SVp0D9d 1wkZuwpMwNQE1SJFlIbcVQPjt80IIUWQ5W+Zeg8LcYLFa6TYp+zzdEsmx0X1FiN0u6zS l5mZwKQVrAj14sHSAEYm4HzUQ73mwC7IJ9pXI772BUSsHFGOwAqwLt2r+B8aQV8E2w1i AYcw== Received: by 10.152.148.40 with SMTP id tp8mr6452368lab.30.1355608326507; Sat, 15 Dec 2012 13:52:06 -0800 (PST) MIME-Version: 1.0 Received: by 10.112.149.225 with HTTP; Sat, 15 Dec 2012 13:51:36 -0800 (PST) In-Reply-To: <201212152147.qBFLl6f1043013@svn.freebsd.org> References: <201212152147.qBFLl6f1043013@svn.freebsd.org> From: Eitan Adler Date: Sat, 15 Dec 2012 16:51:36 -0500 Message-ID: Subject: Re: svn commit: r244278 - head/sys/boot/arm/uboot To: Andrew Turner Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQlp/Q9LLNy4+h+YFkXf79PnncOS1AsBI30r3uduvdcI23IJTa22pogKcvuJO7jKZsLf6NRX Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Dec 2012 21:52:08 -0000 On 15 December 2012 16:47, Andrew Turner wrote: > Author: andrew > Date: Sat Dec 15 21:47:05 2012 > New Revision: 244278 > URL: http://svnweb.freebsd.org/changeset/base/244278 > > Log: > Ignore a warning in ubldr where clang doesn't understand the %D printf > specifier from libstand. > > Modified: > head/sys/boot/arm/uboot/Makefile > > Modified: head/sys/boot/arm/uboot/Makefile > ============================================================================== > --- head/sys/boot/arm/uboot/Makefile Sat Dec 15 21:33:12 2012 (r244277) > +++ head/sys/boot/arm/uboot/Makefile Sat Dec 15 21:47:05 2012 (r244278) > @@ -109,6 +109,9 @@ CFLAGS+= -I${.OBJDIR}/../../uboot/lib > # where to get libstand from > CFLAGS+= -I${.CURDIR}/../../../../lib/libstand/ > > +# clang doesn't understand %D as a specifier to printf > +NO_WERROR.clang= why not NO_WFORMAT or WFORMAT=0 ? Is there a need to eliminate the value of all the warnings? -- Eitan Adler