Eclipse错误提示: Symbol ‘xxxx‘ could not be resolved

问题现象:
调试FPGA时,如果在qsys中增加新的内容,到nios中编译的时候就会提示找不到宏定义。
而这些宏定义都是在system.h这个头文件中的,原来的宏定义都能找到,就是新增的找不到,这个应该和头文件路径没有关系,要不要所有的都找不到。
查找网上的解决方法:
Project->Properties->C/C++ General->Indexer 选中 Enable project specific settings Indexer Options 去掉 Index source files not included in the build { 去掉index unused headers (部分错误有效)}
这个自己测试可以解决。

另外还有其他方法:
1.设置 Project -> C/C++ index -> Freshen all files 即可解决; //这个试了不行
2.眼不见为净:在 Project->Properties->C/C++ General->Code Analysis 中把相关提示选项关闭 //这个没试

参考链接:
https://blog.csdn.net/sinat_19447667/article/details/86611369

你可能感兴趣的:(Quartus,eclipse,java,ide)