3
votes
3answers
1k views
How to link using GCC without -l and without hardcoding path
I have a shared library that I wish to link an executable against using GCC. The shared library has a nonstandard name not of the form libNAME.so, so I can not use the usual -l option. (It happens …
0
votes
2answers
407 views
How to get RPATH with $ORIGIN to work on Code::Blocks GCC?
I'm trying to link an RPATH containing the special string $ORIGIN into an executable built using GCC with the Code::Blocks IDE. I've specified
-Wl,-R$ORIGIN
in the …
0
votes
How to get RPATH with $ORIGIN to work on Code::Blocks GCC?
Whoever decided to make the token $ORIGIN is an evil bastard who deserves a special place in programmer hell. Since '$' is a special character for bash and other scripting languages like make, it s …
