By Plugin.
We mean a library that is loaded vi dlopen()
and its symbols resolved via dlsym()
(not a standard shard library that is dynamically loaded by the runtime system).
Referring to http://www.isotton.com/howtos/C++-dlopen-mini-HOWTO/. The document was last updated in 2006. It recommends the use of extern "C"
to prevent mangling of function names, so that dlsym
can find its functions with relative ease.
Is this still relevant for dynamic libraries? In my particular case, I am trying to create a dynamic library on OSX using libtool. Perhaps using __attribute__ ((constructor))
is more hip and modern, I have had little success discovering the recommended practice.
I'm pretty sure
extern "C"
is still the best way to export unmangled functions from C++ code. Using it across several platforms without issues.