问题
I am using Eclipse Juno parallel version. I have installed
cuda plugin. But while building a sample cuda helloworld
program I am getting error -
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 ' '
Any suggestion......
回答1:
I agree that the toolchain does not appear to be set up properly for C projects.
My suggestions are:
- Create a C++ project instead. That seems to work.
- Use Nsight Eclipse Edition instead. It is installed automatically with the linux CUDA 5 package (just type
nsightfrom a terminal window). - You could report the problem to fixstars corporation, the developer of that cuda plugin. It seems they have not updated it since 2011, so I don't know if it's actively maintained. But the help page is here which includes a link for a mailing list you could use.
来源:https://stackoverflow.com/questions/16161212/eclipse-juno-cuda-plugin-error