This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: recursion ok?
- From: danny <danny at 3rdplanetsoftware dot com>
- To: Ben Elliston <bje at redhat dot com>, gcc gnu <gcc-help at gcc dot gnu dot org>
- Date: Tue, 23 Jul 2002 23:58:41 -0700
- Subject: Re: recursion ok?
- References: <3D3DDF25.1B7FDEE9@3rdplanetsoftware.com> <15678.6772.539810.19058@tooth.toronto.redhat.com>
Hi Ben,
I believe I am using gcc. Below is a copy of my make file.
Thanks
Danny
my make file:
# Define these macros to match with your project's filenames TARGET = esucker
OBJS = esucker.o
LIBS = -lm
CPP = gcc
CPPFLAGS = -Wall -g -DDEBUG
.SUFFIXES: .cpp
$(TARGET): $(OBJS)
$(CPP) $(CPPFLAGS) -o $@ $(OBJS) $(LIBS)
# `make clean' removes extra files that crop up during development clean:
rm $(OBJS)
.cpp.o:
$(CPP) $(CPPFLAGS) -c $<
Ben Elliston wrote:
> >>>>> "danny" == danny <danny@3rdplanetsoftware.com> writes:
>
> danny> xxx.cpp(.eh_frame+0x11): undefined reference to '__gxx_personality_v0'
>
> Are you compiling xxx.cpp with g++?
>
> Ben