This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: Bootstrap failure: java/mangle_name.c, tm.h and insn-codes.h: Nosuch file or directory
- To: Gerald Pfeifer <pfeifer at dbai dot tuwien dot ac dot at>
- Subject: Re: Bootstrap failure: java/mangle_name.c, tm.h and insn-codes.h: Nosuch file or directory
- From: Alexandre Petit-Bianco <apbianco at cygnus dot com>
- Date: Fri, 9 Feb 2001 10:48:42 -0800 (PST)
- Cc: <gcc-bugs at gcc dot gnu dot org>, <java at gcc dot gnu dot org>
- References: <Pine.BSF.4.33.0102091522300.26453-100000@taygeta.dbai.tuwien.ac.at>
- Reply-To: apbianco at cygnus dot com
Gerald Pfeifer writes:
> This is a new bootstrap failure (no more than 24 hours old) on
> sparc-sun-solaris2.8 with a parallel make: GNU make, -j=3, 2
> processors:
OK. I'm testing this patch, but it's taking longer than
expected. There here it is. Sorry about that.
./A
2001-02-09 Alexandre Petit-Bianco <apbianco@redhat.com>
* jvgenmain.c (error): Reversed 2001-02-01 deletion.
Index: jvgenmain.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/java/jvgenmain.c,v
retrieving revision 1.21
diff -u -p -r1.21 jvgenmain.c
--- jvgenmain.c 2001/02/09 00:32:11 1.21
+++ jvgenmain.c 2001/02/09 18:46:00
@@ -66,6 +66,24 @@ usage (const char *name)
exit (1);
}
+void
+error VPARAMS ((const char *msgid, ...))
+{
+#ifndef ANSI_PROTOTYPES
+ const char *msgid;
+#endif
+ va_list ap;
+
+ VA_START (ap, msgid);
+
+#ifndef ANSI_PROTOTYPES
+ msgid = va_arg (ap, const char *);
+#endif
+
+ vfprintf (stderr, msgid, ap);
+ va_end (ap);
+}
+
int
main (int argc, const char **argv)
{