1
vote
Tool to trace local function calls in Linux
What information do you needed exactly?
Doesn't gdb fit your needs with tracepoints?
…
4
votes
[linux, gcc, linking] ld cannot find a library that exists
As just formulated by grepsedawk, the answer lies in the -l option of g++, calling ld. If you look at the man page of this command, you can either do:
g++ -l:libmagic.so.1 [...] …
1
vote
/usr/bin/env questions regarding shebang line pecularities
You should carefully read the wikipedia article about shebang.
When your system sees the magic number corresponding …
