On 03.03.2010 21:27, Graf László wrote: > Hi all, > > I test the DSO sample from http://dev.ariel-networks.com/ on Linux and > it works fine. OK, now I would like to test my own little library. > > Its header file, apr_dso_f.h contains this function: > > static int f10(int p1); > > and its source file contains these lines: > > #include <apr_dso_f.h> > static int f10(int p1)
This one is static so its symbol is not exported. Remove static and it should work fine. Regards Rüdiger
