Tagged Questions
6
votes
2answers
2k views
How to get RPATH with $ORIGIN to work on Code::Blocks GCC?
I'm trying to link an RPATH containing the special string $ORIGIN into an executable built using GCC with the Code::Blocks IDE. I've specified
-Wl,-R$ORIGIN
in the linker options for the project, ...
4
votes
1answer
1k views
AIX 5.3 (ld-xlc) equivalent option Linux (ld-gcc) -rpath
My compiler:xlc version 10.1
Environment: AIX5.3
Linker: ld
When i work on Linux , with gcc (4.4.1) i use the following option
-Wl,-rpath
(-Wl for the linker options) it adds a directory to the ...
3
votes
2answers
3k views
shared library locations for matlab mex files:
I am trying to write a matlab mex function which uses libhdf5; My Linux install provides libhdf5-1.8 shared libraries and headers. However, my version of Matlab, r2007b, provides a libhdf5.so from the ...
1
vote
1answer
74 views
linux linker/loader search order
This question is related to the way libraries are looked up during compilation and dynamic linking.
Consider this small project:
project
liba
a.hpp
a.cpp
libb
b.hpp
b.cpp
main.cpp
a.hpp:
...
1
vote
2answers
444 views
I don't understand -Wl,-rpath -Wl,
For convenience I added the relevant manpages below.
My (mis)understanding first: If I need to separate options with ',', that means that the second '-Wl' is not another option because it comes ...
1
vote
2answers
282 views
rpath=$ORIGIN not having desired effect?
I've got a binary "CeeloPartyServer" that needs to find libFoundation.so at runtime, on a FreeBSD machine. They're both in the same directory. I compile (on another platform, using a cross compiler) ...
1
vote
2answers
250 views
Building a simple (hello-world-esque) example of using ld's option -rpath with $ORIGIN
Note: Full working example now below. Original question follows:
I'm having problems using ld's -rpath parameter with $ORIGIN.
As I couldn't find a complete example, I thought I'd try to write one ...
0
votes
1answer
147 views
How to stop mingw and msys from mangling path names given at the command line?
On Windows, I'm cross-compiling a program for ARM/linux using CodeSourcery's cross-compiler suite. I use mingw msys as my command interpreter, and very often it will mangle my paths and pathnames. For ...
0
votes
1answer
190 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 ...