debugging information cannot be found or does not match visual studio's

后端 未结 14 1707
醉酒成梦
醉酒成梦 2020-11-29 04:11

I copied an existing project and renamed the folder. Now I get this error when I try to compile the application

debugging information cannot be found

14条回答
  •  情歌与酒
    2020-11-29 05:01

    Most probably there are other reasons like .pdb / .exe file mismatch, something were not built / rebuilt, but I had similar case in Visual studio 2013 -

    Something to do with virtual inline function - so I suspect.

    In my case debugger were jumping in a middle of another C++ function, not the one which was called. Jump was off source code by 11 source code lines, but I cannot explain why much miscalculation happened. By simple rearranging functions I've got rid of this problem.

    May be needs more detailed analysis why 11 lines shift happened originally.

    Haven't seen this kind of behavior in any other visual studio.

提交回复
热议问题