The cmake documentation page about BUILD_RPATH_USE_ORIGIN mentions the existance of a $ORIGIN
token, but does not explain what it is or how it can be used. I also can't seem to find any resources specific to this $ORIGIN
token online. Can someone give me an explanation?
What is the $ORIGIN token in CMake?
108 Views Asked by Thomas Fritz At
1
It doesn't really have anything in particular to do with CMake- more with library loaders. Some platforms treat the token "
$ORIGIN
" with a special meaning.For example, quoting from the man page for
ld.so
's section named "Dynamic string tokens":It mentions that token having meaning in contexts like the
--library-path
argument, and theLD_LIBRARY_PATH
,LD_PRELOAD
, andLD_AUDIT
environment variables.CMake's community wiki also has a little to say about it- mostly to the same effect:
And then goes on to talk about mechanisms for doing the same on other platforms.
If you want some other usage tips, see Craig Scott's talk "Deep CMake for Library Authors" at ~t=49:30, which also talks about other mechanisms on other platforms.
Platforms that support
$ORIGIN
include (but aren't necessarily limited to) Linux and Solaris. I found a GNU libtool mailing list question about other platforms in 2005, but no reply, unfortunately.