Your initial email contained a question about -Wl,rpath which is included to compile the path in for the library into the binary. This is and can be done in lieu of using LD_LIBRARY_PATH statements to specify the path of required libraries. If you have a different version of a library in 2 separate paths, the version you are attempting to link against may not have any of the functions you've listed below while the library specified in the -Wl,rpath option may indeed contain those functions, Try using the -L option to specify the library path specified in the -Wl,rpath option and see if that helps.
On Tue, Sep 9, 2008 at 8:17 AM, Martina08 <[EMAIL PROTECTED]> wrote: > > hi, > i added to my libraries -lneethi -lmod_axis2 -lguththila -laxis2_minizip > -laxis2_http_common and now i have error resulting the library > libmod_axis2.so: > undefined reference to ápr_rmm_init´ > undefined reference to áp_hook_child_init´ > undefined reference to ´apr_global_mutex_create´ > ..... > is there somebody who know what is the reason? Why bitch only the one > library? > > -- > View this message in context: > http://www.nabble.com/compiling-rpath-tp19390667p19391094.html > Sent from the Axis - C++ - User mailing list archive at Nabble.com. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > >
