From owner-svn-src-all@FreeBSD.ORG Thu Feb 18 05:19:17 2010 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FA781065679; Thu, 18 Feb 2010 05:19:17 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id A4E9A8FC28; Thu, 18 Feb 2010 05:19:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.3/8.14.1) with ESMTP id o1I59Jh7059667; Wed, 17 Feb 2010 22:09:19 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Wed, 17 Feb 2010 22:09:35 -0700 (MST) Message-Id: <20100217.220935.1104512900358221705.imp@bsdimp.com> To: marcel@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <201002180206.o1I26vjl023579@svn.freebsd.org> References: <201002180206.o1I26vjl023579@svn.freebsd.org> X-Mailer: Mew version 6.3 on Emacs 22.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r204025 - head/share/mk X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Feb 2010 05:19:17 -0000 In message: <201002180206.o1I26vjl023579@svn.freebsd.org> Marcel Moolenaar writes: : Allow suppression of -Wcast-align for WARNS>=4 by defining : NO_WCAST_ALIGN. The headers of the standard C++ library are : not 64-bit clean and trigger the warning. This prevents use : of WARNS>=4 on ia64 for example. Even 32-bit ARM has issues with alignment and things like data puning of types like sockaddr. Warner