How to specify environment variables without expansion in gyp files?

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

  •  11-06-2023
  •  | 
  •  

Pergunta

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

Foi útil?

Solução

The one should do the following:

'ldflags': [
  '-rpath', '/usr/\$$LIB/myprog',
],
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top