0

我正在使用 Eclipse Juno 并行版本。我已经安装了
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 ' '       

任何建议......

4

1 回答 1

1

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

我的建议是:

  • 而是创建一个 C++ 项目。这似乎行得通。
  • 请改用Nsight Eclipse 版。它与 linux CUDA 5 软件包一起自动安装(只需nsight从终端窗口键入)。
  • 您可以将问题报告给该 cuda 插件的开发者 fixstars 公司。他们似乎自 2011 年以来就没有更新它,所以我不知道它是否得到积极维护。但是帮助页面在这里,其中包含一个您可以使用的邮件列表的链接。
于 2013-04-29T14:27:30.310 回答