I got problem using DDD to debug strings of fortran code.
It returns 'cannot find object file' when opened DDD. I've googled the problem,
and quite sure now, it was caused by MAC os deleted the object file while compile for debug.
I've try to solve the problem by compile two steps.
1. gfortran -g [filename] -c "this creat the object file"
2. gfortran -g [ filename.o] -o [executable]
Seems it doesn't work.
I was working on MAC and using gfortran for compile
It returns 'cannot find object file' when opened DDD. I've googled the problem,
and quite sure now, it was caused by MAC os deleted the object file while compile for debug.
I've try to solve the problem by compile two steps.
1. gfortran -g [filename] -c "this creat the object file"
2. gfortran -g [ filename.o] -o [executable]
Seems it doesn't work.
I was working on MAC and using gfortran for compile