Tagged Questions
5
votes
2answers
3k views
CUDA compiler (nvcc) macro
Is there a #define compiler (nvcc) macro of CUDA which I can use? (Like _WIN32 for Windows and so on.)
I need this for header code that will be common between nvcc and VC++ compilers. I know I can go ...
1
vote
1answer
203 views
How do you get NVCC to include macro definition information?
Normally with gcc you can specify the level of debugging information with -g and if you use -g3 it will include preprocessor macro definitions in the executable which debuggers like gdb can read and ...