This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: gcc-3.3 CVS failing during libjava compile with: ./.libs/libgcj.so:undefined reference to `__gcc_personality_v0'


On 30 Jun 2003, Martin Schlemmer wrote:
> ./.libs/libgcj.so: undefined reference to `__gcc_personality_v0'

You'll see the same if you link a C program using cleanups with
-shared-libgcc -fexceptions.  The symbol isn't exported by libgcc_s.so.

I'd guess you need something like the following.

Jeff

Index: libgcc-std.ver
===================================================================
RCS file: /cvs/gcc/gcc/gcc/libgcc-std.ver,v
retrieving revision 1.21
diff -c -p -r1.21 libgcc-std.ver
*** libgcc-std.ver      7 May 2003 22:11:33 -0000       1.21
--- libgcc-std.ver      1 Jul 2003 03:06:40 -0000
*************** GCC_3.3 {
*** 183,188 ****
--- 183,190 ----
    _Unwind_Backtrace
    _Unwind_Resume_or_Rethrow
    _Unwind_SjLj_Resume_or_Rethrow
+   __gcc_personality_v0
+   __gcc_personality_sj0
  }

  %inherit GCC_3.4 GCC_3.3



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]