This is a warning are known issue : The reason is because there the HOME environment variable is set.
If you do this before running gdb the warning is no longer shown: setenv HOME=aaaa
So that mean that inside of GDB we need to deal with HOME (replaced it to PROGDIR:) for amigaos4 , such we will have no such warning , and the HOME will be as always for all amigaos4 apps as "PROGDIR:".
Usually i do it like:
#ifdef __amigaos4__
HOME="PROGDIR:";
#else
what were originally for unix
#endif
This is a warning are known issue : The reason is because there the HOME environment variable is set. If you do this before running gdb the warning is no longer shown:
setenv HOME=aaaa
So that mean that inside of GDB we need to deal with HOME (replaced it to PROGDIR:) for amigaos4 , such we will have no such warning , and the HOME will be as always for all amigaos4 apps as "PROGDIR:".
Usually i do it like: