On Solaris I got a pointer to argv[0]
with getexecname
and then I can memcpy
at that location. (per Finding current executable's path without /proc/self/exe)
I was wondering how to get a pointer to argv[0]
in Linux I did readlink
on /proc/self/exe
but it doesn't give me a pointer to it.
THanks