I have a small project in Nvidia's Nsight, which creates the makefiles for me. I want to use some SSE instructions and would like to compile cpp-files in the project with gcc instead of nvcc.
Is there a way to configure Nsight to do that or do I have to write the Makefile manually?
EDIT: .cu file should be compiled with nvcc of course.
You should be able to use GCC SSE instructions in the CU files - NVCC compiles all the host code with your platform compiler.
If you still would like to use GCC, you have two options: