Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What are the runtime debuggers available in AIX? for the C language? I know we have dbx - Crap


gdb - Good but doesnt work.

Any other?

share|improve this question
1  
What does "doesn't work" mean? And you still haven't said which compiler you are using. – anon Jun 2 '09 at 8:50
What does it matter which compliler i use..i can use xlc or gcc or anyother.. how does debugger get affected by it?. – debugger Jun 2 '09 at 8:53
2  
Believe it or not, you can't use any old debugger with any old compiler - the debug info format for the compiler has to be compatible with the debugger, to start with. – anon Jun 2 '09 at 8:55
So you are saying that if i compile a executable or a shared lib with xlc ...I cannot debug with gdb? Btw i m not using any old compiler or debugger.. i use xlc v9 i think and gdb 6.x they are new i guess.. – debugger Jun 2 '09 at 9:03

4 Answers

Totalview. Best debugger for AIX by a country mile. Interface is old hat motif but functionally very good. Great at threads by the way.

share|improve this answer
+1, nuff said ... – High Performance Mark Jul 21 '10 at 14:55

Are you asking about AIX's native C compiler? If so consult your IBM saleman. You can of course run GCC on AIX, and use the gdb debugger. This has a number of front-ends for it, the best of which is probably DDD.

share|improve this answer
if i ask IBM sales..they will sell me crap like dbx.. Do u really want crap or u want something working..? Just becoz IBM makes these tool doesn't mean they work.. – debugger Jun 2 '09 at 8:54
3  
Sorry, I have a pathological dislike of people who think it is "kewel" not to spell properly. I won't be answering any more of your questions here. – anon Jun 2 '09 at 8:58

For xlC there is dbx and the GUI frontend xdbx.

share|improve this answer

IBM Debugger - /usr/idebug/idebug

GNU Debugger should also work - /opt/freeware/bin/gdb

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.