Date: Mon, 17 Jun 2002 08:33:29 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Kirill Kryukov cc: djgpp AT delorie DOT com Subject: Re: what is ___gxx_personality_v0 ? In-Reply-To: <141154652939.20020617133352@lab.nig.ac.jp> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Mon, 17 Jun 2002, Kirill Kryukov wrote: > I will appreciate any help or comment. > > When I call : gcc.exe -o test.exe test.cc foo.cc > gcc tells me : > > C:/djgpp/tmp/ccMugof3.o(.eh_frame+0x11):test.cc: undefined reference > to '___gxx_personality_v0' > collect2: ld returned 1 exit status Use gpp, not gcc, to link C++ programs, like this: gpp -o test.exe test.cc foo.cc