From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18688 invoked by alias); 1 Dec 2007 20:46:05 -0000 Received: (qmail 18677 invoked by uid 22791); 1 Dec 2007 20:46:05 -0000 X-Spam-Check-By: sourceware.org Received: from chip2og53.obsmtp.com (HELO chip2og53.obsmtp.com) (64.18.13.43) by sourceware.org (qpsmtpd/0.31) with ESMTP; Sat, 01 Dec 2007 20:45:57 +0000 Received: from source ([192.150.11.134]) by chip2ob53.postini.com ([64.18.5.12]) with SMTP; Sat, 01 Dec 2007 12:45:49 PST Received: from inner-relay-1.corp.adobe.com ([153.32.1.51]) by outbound-smtp-1.corp.adobe.com (8.12.10/8.12.10) with ESMTP id lB1KhbOP027281; Sat, 1 Dec 2007 12:43:37 -0800 (PST) Received: from fe2.corp.adobe.com (fe2.corp.adobe.com [10.8.192.72]) by inner-relay-1.corp.adobe.com (8.12.10/8.12.10) with ESMTP id lB1KjmRC024530; Sat, 1 Dec 2007 12:45:48 -0800 (PST) Received: from namailgen.corp.adobe.com ([10.8.192.91]) by fe2.corp.adobe.com with Microsoft SMTPSVC(6.0.3790.1830); Sat, 1 Dec 2007 12:45:48 -0800 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Subject: RE: How to enable all warnings of all warnings of GCCs? Date: Sat, 01 Dec 2007 20:46:00 -0000 Message-ID: References: <998d0e4a0712010157h278c63cl11ec6ead6ea0eb65@mail.gmail.com> From: "John (Eljay) Love-Jensen" To: "J.C. Pizarro" , X-IsSubscribed: yes Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org X-SW-Source: 2007-12/txt/msg00038.txt.bz2 Hi J.C., I use a trick similar in spirit to Tom's. I made a bash shell script called w++ which does: g++ \ -Wall \ -Wextra \ -Wyadayadayada \ ... \ "$@" That enables all the warnings for me (some of which I've decided are uninte= resting, and then I disabled them). I which there was a -WALL or -Wall-and-when-I-say-all-I-really-mean-all fla= g. Sincerely, --Eljay