in reply to DynaLoader and LD_LIBRARY_PATH
The classic way to handle this is to have a script (shell mostly but it could be perl) that first sets the environment correctly and then executes the dependent program:
#!/bin/bash export LD_LIBRARY_PATH=/path/to/foo:$LD_LIBRARY_PATH /path/to/perl/script
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: DynaLoader and LD_LIBRARY_PATH
by CountOrlok (Friar) on Nov 10, 2005 at 17:36 UTC | |
by derby (Abbot) on Nov 10, 2005 at 18:27 UTC |