Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Debug with DDD

Status
Not open for further replies.

TobyXu

Technical User
Jul 19, 2011
1
US
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top