This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: boehm-gc: Length of .comm "_C" [[ problem found, how do I fix it? ]]
Adam Megacz wrote:
>Bryce McKinlay <bryce@waitaki.otago.ac.nz> writes:
>
>>>Thanks, Bryce =) I'll include a fix in my patch so that "configure
>>>--disable-shared" causes NOT_DLL to be defined.
>>>
>
>Actually, NOT_DLL doesn't fix the problem (just checked).
>
GC_NOT_DLL?
The code I am looking at is
# ifdef GC_WIN32_THREADS
# if !defined(GC_NOT_DLL) && (defined(_DLL) || defined(GC_DLL))
__declspec(dllexport) CRITICAL_SECTION GC_allocate_ml;
# else
CRITICAL_SECTION GC_allocate_ml;
# endif
in misc.c
regards
Bryce.