comparison contrib/warn_summary @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
136 136
137 # Start the main section. 137 # Start the main section.
138 138
139 usage="usage: `basename $0` [-llf] [-s stage] [-nosub|-ch|-cp|-f|-fortran|-ada|-intl|-fixinc] [-pass|-wpass] [file(s)]" 139 usage="usage: `basename $0` [-llf] [-s stage] [-nosub|-ch|-cp|-f|-fortran|-ada|-intl|-fixinc] [-pass|-wpass] [file(s)]"
140 stageN=3 140 stageN=3
141 tmpfile=/tmp/tmp-warn.$$ 141 tmpfile=${TMPDIR:-/tmp}/tmp-warn.$$
142 142
143 # Remove $tmpfile on exit and various signals. 143 # Remove $tmpfile on exit and various signals.
144 trap "rm -f $tmpfile" 0 144 trap "rm -f $tmpfile" 0
145 trap "rm -f $tmpfile ; exit 1" 1 2 3 5 9 13 15 145 trap "rm -f $tmpfile ; exit 1" 1 2 3 5 9 13 15
146 146