How to specify environment variables without expansion in gyp files?

StackOverflow https://stackoverflow.com/questions/22252591

  •  11-06-2023
  •  | 
  •  

Pregunta

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:...

¿Fue útil?

Solución

The one should do the following:

'ldflags': [
  '-rpath', '/usr/\$$LIB/myprog',
],
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top