From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31183 invoked by alias); 4 Dec 2012 23:02:50 -0000 Received: (qmail 30460 invoked by uid 48); 4 Dec 2012 23:02:30 -0000 From: "anlauf at gmx dot de" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/55534] -Wno-missing-include-dirs does not work with gfortran Date: Tue, 04 Dec 2012 23:02:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: anlauf at gmx dot de X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2012-12/txt/msg00411.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55534 --- Comment #1 from Harald Anlauf 2012-12-04 23:02:29 UTC --- It would be nice if somebody could explain how to handle the setting of options. In the meantime, since this warning may generate lots of output, I disabled it: Index: gcc/fortran/scanner.c =================================================================== --- gcc/fortran/scanner.c (revision 194167) +++ gcc/fortran/scanner.c (working copy) @@ -326,7 +326,7 @@ else { /* FIXME: Also support -Wmissing-include-dirs. */ - if (warn) + if (0) gfc_warning_now ("Nonexistent include directory \"%s\"", path); } return;