libtool
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: libtool creating wrong symbol names??


From: Bob Friesenhahn
Subject: Re: libtool creating wrong symbol names??
Date: Tue, 24 Jan 2006 13:42:23 -0600 (CST)

On Tue, 24 Jan 2006, syn (sent by Nabble.com) wrote:

If i try to dlsym that symbol it works correctly. Can anyone help me to fix 
this problem? Thanks,

Symbols in C++ scope are name-mangled by the C++ compiler. In order to make your symbols available using their original name, you should use an

extern "C" {
}

around the prototype for your function.

Bob
======================================
Bob Friesenhahn
address@hidden, http://www.simplesystems.org/users/bfriesen/
GraphicsMagick Maintainer,    http://www.GraphicsMagick.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]