Eclipse 日食朱诺&x2B;cuda插件错误

Eclipse 日食朱诺&x2B;cuda插件错误,eclipse,plugins,path,cuda,makefile,Eclipse,Plugins,Path,Cuda,Makefile,我使用的是EclipseJuno并行版本。我已经安装了 cuda插件。但是在构建cuda helloworld示例时 程序出错- make all make: *** No rule to make target `exe_cuda', needed by `all'. Stop. ******Makefile snapshot************** all: exe_cuda # Tool invocatio

我使用的是EclipseJuno并行版本。我已经安装了
cuda插件。但是在构建cuda helloworld示例时
程序出错-

    make all      
    make: *** No rule to make target `exe_cuda', needed by `all'.  Stop.      

    ******Makefile snapshot************** 
     all: exe_cuda   

    # Tool invocations             
@echo 'No tool found that can build the extension specified with the build       
    artifact name $@'         
    # Other Targets    
    clean:     
-$(RM) $(OBJS)$(C_DEPS) exe_cuda    
-@echo ' '       

任何建议

我同意工具链似乎没有为C项目正确设置

我的建议是:

    < L> >创建一个C++项目。这似乎奏效了
  • 改用。它与linux CUDA 5软件包一起自动安装(只需在终端窗口中键入
    nsight
  • 你可以向fixstars公司报告这个问题,fixstars公司是cuda插件的开发者。似乎他们从2011年起就没有更新过它,所以我不知道它是否得到了积极维护。但是“帮助”页面是一个链接,其中包含一个您可以使用的邮件列表

您指的是哪种eclipse插件?它是设计用于juno(Eclipse4.x)的吗?我看到的是为Eclipse3.x设置的,您也可以尝试使用它,它是一个独立的工具。即使我在EclipseHalios和CUDA插件(Helios)1.1I中也遇到了同样的错误,我为EclipseHelios干净地安装了EclipseHelios和CUDA插件,并且在构建和运行示例hello world CUDA项目时没有遇到任何问题。当我创建这个项目时,我做了文件……新…C++项目……Hello World CUDA项目,是你使用的顺序吗?谢谢你的帮助,是的,它是用C++项目工作的,但是我用C项目解决了这个问题。