Hello,
I’ve created a project in Microsoft VS 2005 in which there is an “Application.c” file.
There is a .cu file in the project as well. I want that the function of .cu file should be called from the Application.c file, but I’m unable to do that currently.
On building the code, It gives a linking error saying
unresolved external symbol <function name that’s in .cu file> referenced in function main
Some how, I’m not in a position to convert my application in a .cu file… So, by keeping it as .c only, I need to resolve this…
How do I resolve it?
Can I specify LINK ORDER in visual studio? so that I can link .cu file before it links .c file…