索引器找不到 printf/exit/fprintf (Eclipse + Qt + MinGW 集成有关 stdio.h / stdlib.h / 等中的内容)
我有一个 Qt 项目和 Eclipse,从 Qt Eclipse 集成程序开始。 我正在使用最新版本的 Qt (4.3.4)、Eclipse 和 MinGW。
我的问题是,Eclipse 索引器找不到像 printf()
/fprintf()
/exit()
这样的东西!代码编译良好,程序运行正常!
例如:
static void mouseHandler(int event, int x, int y, int flags, void *param)
{
switch(event) {
/* left button down */
case CV_EVENT_LBUTTONDOWN:
MousePointerPosition = cvPoint(x,y);
leftClicks = 1;
break;
/* right button down */
case CV_EVENT_RBUTTONDOWN:
fprintf(stdout, "Right button down (%d, %d).\n", x, y);
break;
/* mouse move */
case CV_EVENT_MOUSEMOVE:
break;
}
}
我包含了我包含的目录和文件的屏幕截图(注意:我在屏幕截图中使用了 Qt 4.7.3,不应该有什么区别)!
有什么建议吗?
这是屏幕截图的链接(我是新用户..): 屏幕截图
I have a Qt Project and Eclipse started with the Qt Eclipse integration program.
I am using the newest version of Qt (4.3.4), Eclipse and MinGW.
My problem is, that the Eclipse Indexer does not find stuff like printf()
/fprintf()
/exit()
! The code compiles fine and the program runs normally!
e.g:
static void mouseHandler(int event, int x, int y, int flags, void *param)
{
switch(event) {
/* left button down */
case CV_EVENT_LBUTTONDOWN:
MousePointerPosition = cvPoint(x,y);
leftClicks = 1;
break;
/* right button down */
case CV_EVENT_RBUTTONDOWN:
fprintf(stdout, "Right button down (%d, %d).\n", x, y);
break;
/* mouse move */
case CV_EVENT_MOUSEMOVE:
break;
}
}
I included a screenshot of the directories and files I included (note: I used Qt 4.7.3 in the screenshot, shouldn't make a difference)!
Any suggestions?
Here's a link to the screenshot (I am a new user..):
screenshot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论