This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: undefined reference to `c_demande virtual table'
- From: bjorn rohde jensen <shamus at tdcadsl dot dk>
- Cc: gcc-help at gcc dot gnu dot org
- Date: Mon, 06 May 2002 13:21:36 +0200
- Subject: Re: undefined reference to `c_demande virtual table'
- References: <002901c1f4ef$1f0002a0$1e78fea9@hp>
- Reply-to: shamus at tdcadsl dot dk
Hi there,
The most likely reason, g++ does not find the virtual
function table is, that it is not present in any of the
object files, you are linking with. My guess would be,
that you have forgotten to define the virtual function,
which g++'s heuristic has chosen to determine the location
of the virtual function table.
Yours sincerely,
Bjorn