2
I am using the Visual Studio 2010 Express
. The problem is that Syntax Highlighting is very weak and the intellisense
(feature that shows the attributes of objects in how much "you" type) also leaves to be desired (I don’t know if it’s only in the express version).
I’ve been using the COde::Blocks
and enjoyed it very much, but with the Mingw
, with the VS 2010
I managed to compile in Release
but I couldn’t debug, because the Debugger doesn’t show where exactly the segmentation failure happened, it doesn’t even mark the line in the code.
I’ve always used the Mingw
, I don’t know how to configure the Code::Blocks
to debug with the VS 2010 Express
, if possible.
Goes into
Settings -> Compiler and Debuger...
and edit your post containing what is on the tabToolchain Executables
– Mansueli
I just added...
– Walberti Evaristo
You need to change the Bugger to the
cdb
because theGDB
only works for theGCC
. If you haven’t installed it, you can catch him here– Mansueli
@Kyllopardiun, thank you was just that :D.
– Walberti Evaristo
@Kyllopardiun Consider adding a response
– Guilherme Bernal
A suggestion not directly related to the question but with your comments on the question is to switch, if possible, from IDE to Visual Studio 2013 Express. Here Highlight and Intellisense are much better, as well as offering many other functions, bug fixes and some of the features of the latest C++ standard. (C++11)
– Tiago Gomes
@Tiagogomes, unfortunately I can’t do it now. My current machine is a bit old, its graphics drivers, are not supported on
Windows 7
, since theVisual Studio 2013
is only supported byWindows 7
or higher (according to the Microsoft website). But as soon as possible I intend to upgrade. Taking advantage of the comment, will there be a performance difference in the final program between theMingw
andVSXXX
?.– Walberti Evaristo
@Walbertievaristo, you won’t see any really significant changes in speed. Anyone who says otherwise will probably do only some tests with compromised veracity and questionable quality. If your code is efficient there’s no reason to worry about it.
– Mansueli
I decided to use the
Visual Studio
on account of the fact that thePhysX
is only supported on it (I even tried to compile withMingw
, but without success).– Walberti Evaristo