This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: Patch for i386-darwin: test suite results
Sandro Tolaini writes:
>
> On 19/mar/2006, at 12:37, Andrew Haley wrote:
>
> > OK. Well, if I were doing this I'd start with Array_3, running it
> > under gdb to see where it goes wrong.
>
> Seems that signal catching is not working properly under Darwin/i386.
> Changing
>
> #define HANDLE_SEGV
>
> to
>
> #undef HANDLE_SEGV
>
> in libjava/include/darwin-signal.h solves some more test failures:
This file should not be used for Darwin/i386.
I've found the problem, which is in configure.ac:
*-*-darwin*)
SIGNAL_HANDLER=include/darwin-signal.h
;;
This should be
powerpc*-*-darwin*)
Your test results are now as good as can be expected until someone
writes MD_FALLBACK_FRAME_STATE_FOR.
Andrew.