OSDN Git Service

Add fix test from irix_stdio_dummy_va_list
[pf3gnuchains/gcc-fork.git] / gcc / gccbug.in
index 6739e78..3bbc93f 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 # Submit a problem report to a GNATS site.
-# Copyright (C) 1993, 2000 Free Software Foundation, Inc.
+# Copyright (C) 1993, 2000, 2001 Free Software Foundation, Inc.
 # Contributed by Brendan Kehoe (brendan@cygnus.com), based on a
 # version written by Heinz G. Seidl (hgs@cygnus.com).
 #
@@ -77,9 +77,21 @@ else
   fi
 fi
 
-TEMP=$TMPDIR/p$$
-BAD=$TMPDIR/pbad$$
-REF=$TMPDIR/pf$$
+if [ @have_mktemp_command@ = yes ]; then
+       TEMP0=`mktemp $TMPDIR/poXXXXXX` || exit 1
+       TEMP=`mktemp $TMPDIR/pXXXXXX` || exit 1
+       BAD=`mktemp $TMPDIR/pbadXXXXXX` || exit 1
+       REF=`mktemp $TMPDIR/pfXXXXXX` || exit 1
+       REMOVE_TEMP="rm -f $TEMP0 $TEMP $BAD $REF"
+else
+       TEMPD=$TMPDIR/pd$$
+       TEMP0=$TEMPD/po$$
+       TEMP=$TEMPD/p$$
+       BAD=$TEMPD/pbad$$
+       REF=$TEMPD/pf$$
+       mkdir $TEMPD || exit 1
+       REMOVE_TEMP="rm -rf $TEMPD"
+fi
 
 # find a user name
 if [ "$LOGNAME" = "" ]; then
@@ -101,9 +113,9 @@ elif [ -f $HOME/.fullname ]; then
 else
   # Must use temp file due to incompatibilities in quoting behavior
   # and to protect shell metacharacters in the expansion of $LOGNAME
-  $PASSWD | grep "^$LOGNAME:" | awk -F: '{print $5}' | sed -e 's/,.*//' > $TEMP
-  ORIGINATOR="`cat $TEMP`"
-  rm -f $TEMP
+  $PASSWD | grep "^$LOGNAME:" | awk -F: '{print $5}' | sed -e 's/,.*//' > $TEMP0
+  ORIGINATOR="`cat $TEMP0`"
+  rm -f $TEMP0
 fi
 
 if [ -n "$ORGANIZATION" ]; then
@@ -146,42 +158,44 @@ SEVERITY_C=
 while [ $# -gt 0 ]; do
   case "$1" in
     -r) ;;             # Ignore for backward compat.
-    -t | --to) if [ $# -eq 1 ]; then echo "$USAGE"; exit 1; fi
+    -t | --to) if [ $# -eq 1 ]; then echo "$USAGE"; $REMOVE_TEMP; exit 1; fi
        shift ; GNATS_ADDR="$1"
        EXPLICIT_GNATS_ADDR=true
         ;;
-    -f | --file) if [ $# -eq 1 ]; then echo "$USAGE"; exit 1; fi
+    -f | --file) if [ $# -eq 1 ]; then echo "$USAGE"; $REMOVE_TEMP; exit 1; fi
        shift ; IN_FILE="$1"
        if [ "$IN_FILE" != "-" -a ! -r "$IN_FILE" ]; then
          echo "$COMMAND: cannot read $IN_FILE"
+         $REMOVE_TEMP
          exit 1
        fi
        ;;
     -b | --batch) BATCH=true ;;
-    -c | --cc) if [ $# -eq 1 ]; then echo "$USAGE"; exit 1; fi
+    -c | --cc) if [ $# -eq 1 ]; then echo "$USAGE"; $REMOVE_TEMP; exit 1; fi
        shift ; CC="$1"
        ;;
-    -s | --severity) if [ $# -eq 1 ]; then echo "$USAGE"; exit 1; fi
+    -s | --severity) if [ $# -eq 1 ]; then echo "$USAGE"; $REMOVE_TEMP; exit 1; fi
        shift ; SEVERITY_C="$1"
        ;;
     -p | -P | --print) PRINT=true ;;
     -L | --list) FORMAT=norm ;;
     -l | -CL | --lisp) FORMAT=lisp ;;
     --request-id) REQUEST_ID=true ;;
-    -h | --help) echo "$USAGE"; exit 0 ;;
-    -V | --version) echo "$VERSION"; exit 0 ;;
-    -*) echo "$USAGE" ; exit 1 ;;
-    *) echo "$USAGE" ; exit 1
+    -h | --help) echo "$USAGE"; $REMOVE_TEMP; exit 0 ;;
+    -V | --version) echo "$VERSION"; $REMOVE_TEMP; exit 0 ;;
+    -*) echo "$USAGE" ; $REMOVE_TEMP; exit 1 ;;
+    *) echo "$USAGE" ; $REMOVE_TEMP; exit 1
  esac
  shift
 done
 
 # spam does not need to be listed here
-CATEGORIES="c++ c debug fortran java libf2c libobjc libstdc++ middle-end objc optimization other target web"
+CATEGORIES="bootstrap c++ c debug fortran java libf2c libgcj libobjc libstdc++ middle-end objc optimization other preprocessor target web"
 
 case "$FORMAT" in
   lisp) echo "$CATEGORIES" | \
         awk 'BEGIN {printf "( "} {printf "(\"%s\") ",$0} END {printf ")\n"}'
+       $REMOVE_TEMP
         exit 0
         ;;
   norm) l=`echo "$CATEGORIES" | \
@@ -193,6 +207,7 @@ case "$FORMAT" in
         awk 'BEGIN {print "Known categories:"; i = 0 }
           { printf ("%-'$l'.'$l's", $0); if ((++i % '$c') == 0) { print "" } }
             END { print ""; }'
+       $REMOVE_TEMP
         exit 0
         ;;
 esac
@@ -203,7 +218,7 @@ SYNOPSIS_C='<synopsis of the problem (one line)>'
 if [ -z "$SEVERITY_C" ]; then
   SEVERITY_C='<[ non-critical | serious | critical ] (one line)>'
 fi
-PRIORITY_C='<[ low | medium | high ] (one line)>'
+PRIORITY_C='<[ low | medium ] (one line)>'
 CATEGORY_C='<choose from the top of this file (one line)>'
 RELEASE_C='<release number or tag (one line)>'
 ENVIRONMENT_C='<machine, os, target, libraries (multiple lines)>'
@@ -213,8 +228,8 @@ FIX_C='<how to correct or work around the problem, if known (multiple lines)>'
 
 # Catch some signals. ($xs kludge needed by Sun /bin/sh)
 xs=0
-trap 'rm -f $REF $TEMP; exit $xs' 0
-trap 'echo "$COMMAND: Aborting ..."; rm -f $REF $TEMP; xs=1; exit' 1 3 13 15
+trap '$REMOVE_TEMP; exit $xs' 0
+trap 'echo "$COMMAND: Aborting ..."; $REMOVE_TEMP; xs=1; exit' 1 3 13 15
 
 # If they told us to use a specific file, then do so.
 if [ -n "$IN_FILE" ]; then
@@ -254,7 +269,7 @@ SEND-PR: -*- send-pr -*-
 SEND-PR: Lines starting with `SEND-PR' will be removed automatically, as
 SEND-PR: will all comments (text enclosed in `<' and `>').
 SEND-PR: 
-SEND-PR: Please consult the GCC manual manual if you are not sure how to
+SEND-PR: Please consult the GCC manual if you are not sure how to
 SEND-PR: fill out a problem report.
 SEND-PR: Note that the Synopsis field is mandatory.  The Subject (for
 SEND-PR: the mail) will be made the same as Synopsis unless explicitly
@@ -297,7 +312,6 @@ SEND-PR: critical     GCC is completely not operational; no work-around known.
 SEND-PR: serious      GCC is not working properly; a work-around is possible.
 SEND-PR: non-critical Report indicates minor problem.
 >Priority:     $PRIORITY_C
-SEND-PR: high         A solution is necessary as soon as possible.
 SEND-PR: medium       The problem should be solved in the next release.
 SEND-PR: low          The problem should be solve in a future release.
 >Category:     $CATEGORY_C
@@ -322,6 +336,7 @@ SEND-PR: support             I need help with gcc.
 host: @host@
 build: @build@
 target: @target@
+configured with: @gcc_config_arguments@
 >Description:
        $DESCRIPTION_C
 >How-To-Repeat:
@@ -398,7 +413,8 @@ while [ -z "$REQUEST_ID" ]; do
   PATTERN=">Priority:"
   PRIORITY=`eval sed -n -e "\"$SED_CMD\"" $TEMP`
   case "$PRIORITY" in
-    ""|low|medium|high) CNT=`expr $CNT + 1` ;;
+    ""|low|medium) CNT=`expr $CNT + 1` ;;
+    high) echo "$COMMAND: \`Priority: high' is reserved for GCC maintainers." ;;
     *)  echo "$COMMAND: \`$PRIORITY' is not a valid value for \`Priority'."
   esac
   #
@@ -457,6 +473,7 @@ while [ -z "$REQUEST_ID" ]; do
       a*)
        if [ -z "$BATCH" ]; then
          echo "$COMMAND: the problem report remains in $BAD and is not sent."
+         REMOVE_TEMP="rm -f $TEMP0 $TEMP $REF"
          mv $TEMP $BAD
         else
          echo "$COMMAND: the problem report is not sent."
@@ -517,6 +534,7 @@ else
   echo "$COMMAND: mysterious mail failure."
   if [ -z "$BATCH" ]; then
     echo "$COMMAND: the problem report remains in $BAD and is not sent."
+    REMOVE_TEMP="rm -f $TEMP0 $TEMP $REF"
     mv $REF $BAD
   else
     echo "$COMMAND: the problem report is not sent."