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, ...
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 ...
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 ...
1
vote
2answers
276 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
248 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 ...
1
vote
2answers
455 views

Linking is jacked up.. wtf is -rpath? MacOS X

So, I'm building a project, and it uses functions from a compiled library (.dylib or .so). I have the headers and the library files (this is all part of QtRoot, btw) in appropriate locations, but ...
0
votes
1answer
168 views

Cmake on mac os x, link libraries with fullpath

I'm trying to build a python extension with cmake. This is the cmake list: cmake_minimum_required(VERSION 2.8) PROJECT(drtile) set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}) find_package(Vigra ...
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 ...