Question

I want to specify an rpath, like this:

'ldflags': [
  '-rpath', '/usr/$LIB/myprog',
],

But when I check the resulting binary, I see it has another rpath:

$ objdump -x binary | grep RPATH
  RPATH                /usr//myprog:$ORIGIN/lib/

What I want is: /usr/$LIB/myprog:...

Was it helpful?

Solution

The one should do the following:

'ldflags': [
  '-rpath', '/usr/\$$LIB/myprog',
],
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top