This is the mail archive of the
java-patches@sources.redhat.com
mailing list for the Java project.
Re: [PATCH] Cleanup patches to build libgcj on x86/linux
Alexandre Petit-Bianco wrote:
> `GC_find_start' seems
> to be defined in boehm-gc/gc_mark.h as:
>
> ptr_t GC_find_start();
>
> > The C++ compiler all in a sudden started to be really picky -- or did
> > we have a way to silence it before which broke all in a sudden?
My guess is that the compiler is correct and the declarations in gc_mark.h
are simply not legal in C++. We'll need to make _Jv_MarkObj (and other stuff
in boehm.cc) into extern "C" functions instead.
[ bryce ]