I'm using VS2012 with CUDA 7.5 and have already changed CUDA version number in MainBuilder.vcxproj so that I can open the project properly. But I have encountered the following errors while building the solution, no matter how I switch the build configuraion (Release or Debug, Win32 or x64):
C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\include\concrt.h(5762): error C2015: too many characters in constant
C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\include\concrt.h(5762): error C2146: syntax error : missing ')' before identifier 'q'
C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\include\concrt.h(5762): error C2059: syntax error : ')'
C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\include\concrt.h(5762): error C2001: newline in constant
It looks like the hex values have been interpreted into ASCII and parsed as characters, but I'm not even sure how to describe this kind of error so that I can google it myself.
Anyone has any idea how to solve this problem, perhaps?
I'm using VS2012 with CUDA 7.5 and have already changed CUDA version number in MainBuilder.vcxproj so that I can open the project properly. But I have encountered the following errors while building the solution, no matter how I switch the build configuraion (Release or Debug, Win32 or x64):
... and so on...
The codes that cause these errors are like this:
It looks like the hex values have been interpreted into ASCII and parsed as characters, but I'm not even sure how to describe this kind of error so that I can google it myself. Anyone has any idea how to solve this problem, perhaps?