Subject: library support for g++ exception handling
To: None <netbsd-current@NetBSD.ORG>
From: John C. Hayward <John.C.Hayward@wheaton.edu>
List: current-users
Date: 02/17/1997 08:02:17
Dear NetBSDers,
   When I try to compile a g++ file with the -fhandel-exceptions I get:
=====
> g++ -fhandle-exceptions main.cc
/var/tmp/cc0074231.o: Undefined symbol `___throw_type_match' referenced
from text segment
/var/tmp/cc0074231.o: Undefined symbol `___register_exceptions' referenced
from text segment
/var/tmp/cc0074231.o: Undefined symbol `___find_first_exception_table_match' 
referenced from text segment
/var/tmp/cc0074231.o: Undefined symbol `___unwind_function' referenced
from text segment
=====
   This is on a i386 platform with 1.2.  
   Is there a library I need to include to get this to link properly?
johnh...