automake and custom rpath
Posted
by
scai
on Stack Overflow
See other posts from Stack Overflow
or by scai
Published on 2012-10-04T09:35:45Z
Indexed on
2012/10/04
9:37 UTC
Read the original article
Hit count: 246
I have to ship a third-party library with an application. Because I don't want to set LD_LIBRARY_PATH
by hand or require any wrapper script I want automake to set a custom rpath
. Unfortunately libtool
has its own -rpath
option and adding -Wl,-rpath,/foo/bar
to LDFLAGS
only results in
g++: unrecognized option '-rpath'
because libtool
seems to get confused with the command line options. The same happens with the alternative form -Wl,-rpath -Wl,/foo/bar
.
Is there any way to specify a custom rpath without libtool interference?
© Stack Overflow or respective owner