Tagged Questions
1
vote
1answer
175 views
Using -rpath and $ORIGIN with libtool-based projects?
I am trying to incorporate a libtool-based package into a project of my own, perhaps in a non-standard way. Here is my goal:
Build external project:
./configure --prefix=$HOME/blah --etcetera ...
0
votes
2answers
154 views
RPATH equivalent for executables
I have a c++ shared library which as part of its normal behaviour fork()/execs() another executable containing some unstable legacy code. This executable is not useful other than with this library, so ...