This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: Next libjava on cygwin problem
- To: java at gcc dot gnu dot org
- Subject: Re: Next libjava on cygwin problem
- From: Bryce McKinlay <bryce at albatross dot co dot nz>
- Date: Sun, 22 Apr 2001 19:48:48 +1200
On Sunday, April 22, 2001, at 06:55 PM, Billinghurst, David (CRTS)
wrote:
> That does it, and it was the last thing preventing a successful build.
Cool! Now, who wants to fix up the native win32 port? ;-)
> +#ifndef __CYGWIN__
> /* This will be non-NULL if the user has preloaded a JNI library, or
> linked one into the executable. */
> extern "C"
> @@ -44,6 +45,7 @@
> #pragma weak JNI_OnLoad
> extern jint JNI_OnLoad (JavaVM *, void *) __attribute__((weak));
> }
> +#endif /* __CYGWIN__ */
Is there a configure test we can do to check for working weak symbol
support? That would be better than special-casing cygwin here.
regards
[ bryce ]