cl.exe error reporting errors as file:line: instead of file(line) [modified]
-
Can anyone tell me what switch I need to give (or not give) to cl.exe to make it report errors like Somefile.cpp(216) : error C2065: 'blah' : undeclared identifier instead of Somefile.cpp:216: error C2065: 'blah' : undeclared identifier I'm using a custom build tool, which is causing the errors to be reported in the latter format (with colons around the line number) instead of brackets - this means you can't double click on the error to go straight to the line (it takes you to the top of the file instead) A quick test of cl.exe manually suggests that the error(line) format is what it outputs by default, so something must be overriding this, but I can't work out what
Help me! I'm turning into a grapefruit! Buzzwords!
modified on Thursday, February 25, 2010 9:25 AM