How can i Escape from “no source available” errors when stepping OVER a stdio function in eclipse (C language, using CDT)

橙三吉。 提交于 2020-01-06 01:06:29

问题


I'm using eclipse to write C code and attempting to debug code using the eclipse debugger/

While debugging it gives me "No source available" errors, when I'm trying to step over stdio functions. I have included stdio.h

Is there a way to ignore these errors?

They're not actually causing the program to crash (that's caused by a segfault elsewhere), but I'd like to look into what's happening with eclipse's tools rather than going through cygwin and GDB.


回答1:


A. Eclipse uses GDB on linux for its debugging generally speaking.
B. Try 'next', 'step over' or 'finish' if you are within a stdio function instead of 'step into'.



来源:https://stackoverflow.com/questions/18752183/how-can-i-escape-from-no-source-available-errors-when-stepping-over-a-stdio-fu

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!