Hi list,
I need to start a pd~ process with a LD_LIBRARY_PATH= flag. How do I do that?
cheers
m
On 10/16/2017 08:44 PM, Max wrote:
Hi list,
I need to start a pd~ process with a LD_LIBRARY_PATH= flag. How do I do that?
the env-vars should be inherited by any child process. so if you start the parent Pd with the LD_LIBRARY_PATH= flag, the pd~ process should see it as well.
alternatively, install your libraries in a place where the runtime linker can find them. LD_LIBRARY_PATH is *really* a hack, it's insecure, will burn kittens and eat your data. a number of sanitized environments will forbid it. go write your SDK vendor that they should provide proper installation routines for the stuff.
fgmards IOhannes