From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 81498 invoked by alias); 22 Jan 2017 20:55:01 -0000 Mailing-List: contact java-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: java-patches-owner@gcc.gnu.org Received: (qmail 81465 invoked by uid 89); 22 Jan 2017 20:55:00 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:2059, determines X-Spam-User: qpsmtpd, 2 recipients X-HELO: ainaz.pair.com Received: from ainaz.pair.com (HELO ainaz.pair.com) (209.68.2.66) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 22 Jan 2017 20:54:49 +0000 Received: from anthias (vie-188-118-248-047.dsl.sil.at [188.118.248.47]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ainaz.pair.com (Postfix) with ESMTPSA id DCA623F531; Sun, 22 Jan 2017 15:54:46 -0500 (EST) Date: Sun, 22 Jan 2017 20:55:00 -0000 From: Gerald Pfeifer To: gcc-patches@gcc.gnu.org cc: java-patches@gcc.gnu.org Subject: contrib/warn_summary: review the -java option Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-SW-Source: 2017-q1/txt/msg00013.txt.bz2 Applied, and that's about the last change related to the removal of GCJ/libgcj from GCC. Phew. Gerald 2017-01-22 Gerald Pfeifer * warn_summary: Remove the -java option. Index: warn_summary =================================================================== --- warn_summary (revision 244759) +++ warn_summary (working copy) @@ -3,7 +3,7 @@ # This script parses the output of a gcc bootstrap when using warning # flags and determines various statistics. # -# usage: warn_summary [-llf] [-s stage] [-nosub|-ch|-cp|-f|-fortran|-java|-ada|-intl|-fixinc] +# usage: warn_summary [-llf] [-s stage] [-nosub|-ch|-cp|-f|-fortran|-ada|-intl|-fixinc] # [-pass|-wpass] [file(s)] # # -llf @@ -19,7 +19,7 @@ # # -nosub # Only show warnings from the gcc top level directory. -# -ch|-cp|-f|-fortran|-java|-ada|-intl|-fixinc +# -ch|-cp|-f|-fortran|-ada|-intl|-fixinc # Only show warnings from the specified gcc subdirectory. # These override each other so only the last one passed takes effect. # @@ -57,7 +57,7 @@ else if test "$filter" = nosub ; then # Omit all subdirectories. - egrep -v '/gcc/(ch|cp|f|fortran|java|ada|intl|fixinc)/' + egrep -v '/gcc/(ch|cp|f|fortran|ada|intl|fixinc)/' else # Pass through only subdir $filter. grep "/gcc/$filter/" @@ -136,7 +136,7 @@ # Start the main section. -usage="usage: `basename $0` [-llf] [-s stage] [-nosub|-ch|-cp|-f|-fortran|-java|-ada|-intl|-fixinc] [-pass|-wpass] [file(s)]" +usage="usage: `basename $0` [-llf] [-s stage] [-nosub|-ch|-cp|-f|-fortran|-ada|-intl|-fixinc] [-pass|-wpass] [file(s)]" stageN=3 tmpfile=/tmp/tmp-warn.$$ @@ -162,7 +162,7 @@ -s) if test -z "$2"; then echo $usage 1>&2; exit 1; fi stageN="$2"; shift 2 ;; -s*) stageN="`expr $1 : '-s\(.*\)'`" ; shift ;; - -nosub|-ch|-cp|-f|-fortran|-java|-ada|-intl|-fixinc) filter="`expr $1 : '-\(.*\)'`" ; shift ;; + -nosub|-ch|-cp|-f|-fortran|-ada|-intl|-fixinc) filter="`expr $1 : '-\(.*\)'`" ; shift ;; -pass) pass=1 ; shift ;; -wpass) pass=w ; shift ;; -*) echo $usage 1>&2 ; exit 1 ;;