> (gdb) run -WOUseWatchDog NO > Starting program: /usr/local/sbin/ogo-webui-1.1 -WOUseWatchDog NO > /usr/src/gnu/usr.bin/binutils/gdb/utils.c:1007: internal-error: virtual > memory exhausted: can't allocate 1073960 bytes. > A problem internal to GDB has been detected, > further debugging may prove unreliable. > Quit this debugging session? (y or n) y
Problem is that gdb ran out of memory: apparently your GNUStep app is a bit bloated and contains lots of debugging information. That debug information doesn't fit into the memory you've allowed for gdb. Try to increase the amount of memory using "ulimit -d" and/or "ulimit -m". Mark