How to debug in Code :: Blocks using the VS 2010 Express compiler

2

I'm using Visual Studio 2010 Express . The problem is that Syntax Highlighting is very weak and intellisense (a feature that shows the attributes of the objects as you type) also leaves something to be desired (I do not know if it's just in the express version).

I've been using COde::Blocks and I really enjoyed it, but with Mingw , with VS 2010 I was able to compile in Release but could not debug, because the debugger does not show exactly where the segmentation failure occurred , it does not even mark the line in the code.

I have always used Mingw , I do not know how to set Code::Blocks to debug with VS 2010 Express , if possible.


    
asked by anonymous 11.08.2014 / 17:04

1 answer

1

The GNU Debugger is not compatible with the Microsoft compiler and although it seems strange, Microsoft provides the CDB debugger as an optional item and therefore should be downloaded from the site of them:

CDB Debugger

I think they provide a car with the steering wheel as an optional item.

12.08.2014 / 18:50