尝试调试像Eclipse IDE中的新项目那样结帐的简单c ++项目,之后通过向导创建“带有现有代码的Makefile项目”。
我放置了断点并启动了调试器。得到错误:
No source available for "main() at 0x400c6c"
如何让Eclipse
看到来源?
UPD
添加源代码:
a.cpp
#include <stdio.h>
int main( int argc, char ** argv )
{
printf( "hello world" );
}
生成文件
all:a
a.o:a.cpp
gcc -c a.cpp
在“非Eclipse风格”makefile
中看起来像问题。修复这种导入的非日食项目的最佳方法是什么?