[nodejs] dynamically linking shared libraries using relative paths?

2014-04-07 Thread Alan Koshy John
Hi, I would like to dynamically link a shared library file. I used the following code link_settings:{ ldflags:[-L../lib/linux/ia32/,-lLib.so], } I have specified the relative path here and because of which the library is not linked at the run time. But

Re: [nodejs] dynamically linking shared libraries using relative paths?

2014-04-07 Thread Ben Noordhuis
On Mon, Apr 7, 2014 at 1:42 PM, Alan Koshy John alankoshyj...@gmail.com wrote: Hi, I would like to dynamically link a shared library file. I used the following code link_settings:{ ldflags:[-L../lib/linux/ia32/,-lLib.so], } I have specified the