¡@

Home 

c++ Programming Glossary: function_inside_shared_lib

Building a shared library using gcc [closed]

http://stackoverflow.com/questions/3588476/building-a-shared-library-using-gcc

and calls a function that the shared library defines function_inside_shared_lib . In turn this shared library uses a function defined inside.. The problem is when I build the shared library the symbol function_inside_shared_lib does not get exported. I examined the shared library using nm.. static.h #include iostream using namespace std int function_inside_shared_lib int arg1 int arg2 cout In function_inside_shared_lib endl cout..