Tagged Questions
9
votes
3answers
1k views
Is there a Windows/MSVC equivalent to the -rpath linker flag?
On Linux/GCC I can use the -rpath flag to change an executables search path for shared libraries without tempering with environment variables.
Can this also be accomplished on Windows? As far as I ...
5
votes
2answers
1k views
ld: Using -rpath,$ORIGIN inside a shared library (recursive)
I just made a basic example of using ld's -rpath option with $ORIGIN here (see 2nd response for a working version).
I'm trying to create an example where main.run links to foo.so, which in turn links ...
0
votes
1answer
188 views
C++: Lookup failure when linking using -rpath and $ORIGIN
I'm trying to learn how to use the -rpath option in GCC's linker (ld) with $ORIGIN.
I'm trying the simplest example I can think of (see below), and all the links I read seem to say I'm doing it ...