This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: gcj 4.0.2 seg fault
Heitzso writes:
> The seg fault goes away if I split out the en_us.jar compilation
> into one of its own.
Ah, OK. I do know the casue of this one.
It happens because gcj first incorrectly treats Class X as an external
reference (when compiling the first jar) and then later when compiling
the second jar, gcj segfaults. This is because gcj can't compile a
class once it's decided that it's external.
I think I might have seen this once before and ignored it because
compiling multiple jars is a pretty weird thing to do. :-)
I guess this should be fixed.
Andrew.