Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 eclipse 编写 C 代码并尝试使用 eclipse 调试器/
在调试时它给了我"No source available"错误,当我试图跳过 stdio 函数时。我已经包括stdio.h
"No source available"
stdio.h
有没有办法忽略这些错误?
它们实际上并没有导致程序崩溃(这是由其他地方的段错误引起的),但我想看看 eclipse 的工具发生了什么,而不是通过 cygwin 和 GDB。
A. Eclipse 一般在 linux 上使用 GDB 进行调试。 B. 如果您在 stdio 函数中,请尝试“下一步”、“跳过”或“完成”,而不是“进入”。