mingw32 gcj compile failure and possible patch
Adam Megacz
gcj@lists.megacz.com
Fri Apr 5 20:21:00 GMT 2002
Adam Megacz <gcj@lists.megacz.com> writes:
> aking@dreammechanics.com writes:
> > I was hoping Adam M. would have a chance to look at this error, but
> It should be fixed now -- could you try again?
Er, that fix was for a differnt problem. Here's the fix for your
problem. Could you cvs update and try again?
- a
2002年04月05日 Adam Megacz <adam@xwt.org>
* exception.cc (abort): added static modifier
Index: exception.cc
===================================================================
RCS file: /cvs/gcc/gcc/libjava/exception.cc,v
retrieving revision 1.20
diff -u -r1.20 exception.cc
--- exception.cc 2002年02月13日 00:29:42 1.20
+++ exception.cc 2002年04月06日 04:17:54
@@ -23,7 +23,8 @@
// stdlib.h's abort().
namespace std
{
- __attribute__ ((__noreturn__)) void abort ()
+ static __attribute__ ((__noreturn__)) void
+ abort ()
{
::abort ();
}
More information about the Java
mailing list