Mail Archives: djgpp/2000/10/02/06:24:15
On Mon, 2 Oct 2000, Wim Cools wrote:
> > >Does anybody knowwhat this "__Fv" means
> >
> > It's C++ name mangling.
> >
> > >and how I can prevent the compiler from adding __Fv
> >
> > extern "C" void blah()
> > {
> > ...
> > }
> >
> > The `extern "C"' will compile the function using C language calling
> > conventions.
>
> Thanx, but the "__Fv" addition it still there in the .O file...
> Is there maybe another way to fix this?
Using ``extern "C"'' is the _only_ way to fix this, and it always works.
If it didn't work for you, you must have done something wrong.
The best way of getting a useful response is to post your code (after
adding ``extern "C"''), and then describe exactly what seems to be wrong
with the object file.
- Raw text -