I think the other important part about this subject is #6648: ability to retrieve VM flags, which would allow to relaunch the interpreter the same way (full path to the binary + arguments/flags).
Currently, I work around it by using ps -o args -p pid and GetCommandLineA(), which is far from optimal when we know it's so easily accessible for the VM (argc/args).
I think the other important part about this subject is #6648: ability to retrieve VM flags, which would allow to relaunch the interpreter the same way (full path to the binary + arguments/flags).
Currently, I work around it by using ps -o args -p pid and GetCommandLineA(), which is far from optimal when we know it's so easily accessible for the VM (argc/args).
argv[0] is not reliable on some environment.
See also my comment on #4046.
Currently, I work around it by using ps -o args -p pid and GetCommandLineA(), which is far from optimal when we know it's so easily accessible for the VM (argc/args).
argv[0] is not reliable on some environment.
See also my comment on #4046.
I meant args to get the VM flags (args[1..argc-1]).
I'm fine using RbConfig for getting the path to the ruby binary for the moment.
I admire your effort to try to solve it without RbConfig.
Sorry for discussing of #6648 here, I should have answered on that thread.