rpath is an option used with GCC's ld linker to insert an RPATH header in either binaries or shared libraries. This header specifies the first paths to be searched for a library

learn more… | top users | synonyms

35
votes
14answers
49k views

Install python 2.6 in CentOS

I have a shell that runs CentOS. For a project I'm doing, I need python 2.5+, but centOS is pretty dependent on 2.4. From what I've read, a number of things will break if you upgrade to 2.5. I want ...
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 ...
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 ...
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 ...
2
votes
3answers
375 views

Compiling Python 2.6.6 and need for external packages wxPython, setuptools, etc… in Ubuntu

I compiled Python 2.6.6 with google-perf tools (tcmalloc) library to eliminate some of the memory issues I was having with the default 2.6.5. After getting 2.6.6 going it seems to not work becuase I ...
2
votes
1answer
228 views

Shipping GNU/Linux Firefox plugin with shared libraries (for installation with no root access)

The application is a Firefox plugin (loaded from $HOME/.mozilla/plugins), so wrapper script that sets LD_LIBRARY_PATH is not an easy option. RPATH, as far as I know, cannot refer to $HOME and can be ...
1
vote
1answer
72 views

CMAKE RPATH with packaging

I am creating package using cmake I am having following structure bin/ bin1 lib/ lib1 lib2 Where lib1 and lib2 are external dynamic library. How can I set RPATH so it will ...
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
1answer
168 views

LD_PRELOAD changes the LD_LIBRARY_PATH

I am having a peculiar problem. I have a shared library 'my_tracker.so' that I built using gcc-4.2. This shared library now has a dependency on libgcc_s.so.1 (GCC 4.2). I did 'ldd my_tracker.so' and ...
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 ...
1
vote
1answer
177 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 ...
1
vote
1answer
113 views

How to create relocatable Apps

hope someone can help me. I have something programed in python. That uses a lot of libraries. So I created a virtual environment with virtualenv and copied every file is needed in this environment. ...
1
vote
2answers
1k views

Developing Qt applications in Unix systems using Qt Creator

I'm developing a Qt application in Linux using Qt Creator (2.1 RC). I've created 2 projects, and used the wizard to add the library project to the application project. However when I run it, I receive ...
1
vote
2answers
458 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 ...
1
vote
2answers
240 views

Is there a way to inspect the current rpath on Linux?

I'm aware that it is possible to use 'readelf -d | grep RPATH' to inspect a given binary from the shell, but is it possible to do this within a process? Something like (my completely made up system ...
0
votes
0answers
17 views
+100

set-uid and relative path in INTERP of an dyn-linked binary

I just find out, that the combination of set-uid and a relative path in the INTERP section of an ELF binary is very dangerous. I'm not quite sure whether this needs reporting, but it seems to me ...
0
votes
1answer
84 views

Link error when build libjingle on Mac OS X 10.7.2

I want to build libjingle on Mac OS X 10.7.2. I just overcome the compiler error and meet the linker error now. The path /Developer/libjingle/libjingle-0.6.3/talk/build/dbg/lib exists but system says ...
0
votes
0answers
159 views

-rpath in makefile for mac os 'dyld: Library not loaded'

I use -rpath to link dynamic librarys in the makefile of the project. The line is looking like: LDFLAGS += -Wl,-rpath,/Users/myName/dev/boost/lib I have no problems while compiling but when I start ...
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
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
80 views

Does @rpath work for looking up .dylibs that are loaded/called from another .dylib?

I just found about the @rpath to load .dylib files using dlopen, and need some help understanding them. I am using Xcode 3.2.5 on a OSX machine. I have several .dylib's that call other .dylib's, ...
0
votes
1answer
426 views

how to specify rpath in a make file?

I'm trying to specify rpath in my binary. My makefile looks like this- CC=gcc CFLAGS=-Wall LDFLAGS= -rpath='../libs/' main: main.c gcc -o main main.c clean: rm -f main main.o But ...
0
votes
2answers
150 views

OpenSSL error building Erlang OTP from source

Trying to build a completely self-contained OTP that can be moved around independently of libs installed on a system. Build OpenSSL 1.0.0d from source as follows: ./config ...
0
votes
1answer
77 views

How to use $ORIGIN and suid application?

I'm using python with setcap CAP_NET_RAW enabled. My python script imports a shared library which has $ORIGIN in its RPATH. Since my python is now a suid app, $ORIGIN is not evaluated and the library ...
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 ...
0
votes
2answers
32 views

Is there a way in rPATH's conary recipe to get the verison of an existing package

i am trying ... loadRecipe('existingpackage') class NewPackage(PackageRecipe): name = 'newpackage-test' p = existingpackage.version print p but getting error, that existingpackage is ...
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 ...