This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: SimpleDateFormat
Ben Gardiner wrote:
> I had this crash with 4.3.0 cross compiled for powerpc; the crash
> occurred only when I statically linked my executable with
> -static-libgcj. It turned out to be a missing resource. To fix this
> problem, I created an archive that had all the *properties*.o objects
> from libgcj.a (I called it libgcj_properties.a) and linked it with my
> application using '-Wl,--whole-archive -lgcj_properties
> -Wl,--no-whole-archive' before the '-static-libgcj'.
Thank you. This definitely sounds right: fallout from the fact that we
*still* can't dynamically link on mingw. :-(
Andrew.