total noob here. Can you recommend a c++ compiler?
#1 Members - Reputation: 125
Posted 24 June 2012 - 04:10 PM
#2 Members - Reputation: 572
Posted 24 June 2012 - 04:16 PM
Alternately, there are lots of text editors that you can code in, such as Notepad++ which you can also configure to run a compiler, or even just open a command prompt to run the compiler from
#3 Moderator* - Reputation: 5411
Posted 24 June 2012 - 04:18 PM
Probably an IDE, actually. But yes, you type the code, and the compiler turns your code into an executable (and the IDE simplifies the process of using the compiler, though it's possible (though more painful, depending on who you talk to) to use the compiler without an IDE (a compiler is typically just a command line program)).I figured the first thing I had to do was to properly learn C++. I remember back when I was in college we had a program that opened up and then you could write your own code and then run it. That's called a compiler right?
I'll recommend a good compiler and IDE for Windows: Visual C++ 2010 Express. It's free, and has the best debugger in the industry.Can you recommend a good compiler for windows7?
#5 Members - Reputation: 110
Posted 24 June 2012 - 06:39 PM
I would say that MS Visual C++ 2010 is a great choise, and i think is the most popular. BUT ....
Looking and surfing i found that the one i like the most is the QT IDE, http://qt.nokia.com/products/
The Qt Creator is just awesome for programming in C++, and its cross-platform, so you can write your code once and compile anyware.
It also has the whole Qt framework for programing graphic interface in C++ in case you want to write software.
BUt if you just like to learn C++, you can do a plain C++ project on the Qt Creator and its really smooth.
I prefer Qt Creator over MS Visual C++
#7 Members - Reputation: 908
Posted 25 June 2012 - 06:25 AM
Visual C++ Express
Eclipse CDT
Qt Creator
Code::Blocks
NetBeans
Visual C++ is an IDE for Microsoft's C++ Compiler, the other IDEs can either use Microsoft's C++ Compiler or MinGW depending on which one you have installed.
Follow my progress: http://blog.nuclex-games.com/ or Twitter - Topics: Ogre3D, Blender, game architecture tips & code snippets.
#9 Members - Reputation: 3285
Posted 25 June 2012 - 11:34 AM
Just for completeness sake, these are the most popular IDEs for Windows (in order of popularity, decided by me
)
Visual C++ Express
Eclipse CDT
Qt Creator
Code::Blocks
NetBeans
Visual C++ is an IDE for Microsoft's C++ Compiler, the other IDEs can either use Microsoft's C++ Compiler or MinGW depending on which one you have installed.
You like CDT?
Myself, if I was to rework your list in my order of preference:
Visual C++
QT Creator
Netbeans
Code::Blocks
Nothing
Less than nothing
I owe you something because there is so little nothing
A year in hell
A lifetime in hell
Eclipse CDT
#10 Members - Reputation: 908
Posted 26 June 2012 - 10:05 AM
The Android SDK (and especially NDK for C++ developers) uses Eclipse and I got the impression that it's the most common choice for people running MinGW on Windows.
I'm using Eclipse on Linux and it's, well, sort of usable. I find it more convenient to write code in Windows with Visual C++, save it to a network share and compile from bash via PuTTY, though. I would rank the remaining options by their inverse closeness to CMake...
Follow my progress: http://blog.nuclex-games.com/ or Twitter - Topics: Ogre3D, Blender, game architecture tips & code snippets.
#11 Members - Reputation: 58
Posted 26 June 2012 - 10:22 AM
This is known as an IDE. A compiler just takes the name of a file and makes an exe, it doesnt include an editor. For Windows the best IDEs are Visual Studio (which is made by Microsoft), Code::Blocks, and Eclipse. I don't know about eclipse but I know Visual Studio and Code::Blocks include a compiler with them. Id recommend you download Visual Studio 2010 Express edition to start.
Alternately, there are lots of text editors that you can code in, such as Notepad++ which you can also configure to run a compiler, or even just open a command prompt to run the compiler from
Dev-C++ is at least as good as Code::Blocks, I would say. Definitely better than Eclipse in my opinion. So ye, I recommend Dev-C++ if you, like me, think Visual Studio feels too cumbersome.
Edited by antiHUMANDesigns, 26 June 2012 - 10:23 AM.
#12 Members - Reputation: 89
Posted 27 June 2012 - 07:19 AM
http://www.niverse.wordpress.com
Parkania - Blog
http://www.projectfbg.wordpress.com
#13 Moderator* - Reputation: 5411
Posted 27 June 2012 - 07:32 AM
Dev-C++ is terrible. At least use wxDev-C++ if you're going to use it at all. But never use the original [edit: Bloodshed] Dev-C++.Dev-C++ is at least as good as Code::Blocks, I would say. Definitely better than Eclipse in my opinion. So ye, I recommend Dev-C++ if you, like me, think Visual Studio feels too cumbersome.
Edited by Cornstalks, 27 June 2012 - 09:21 AM.
#14 Members - Reputation: 846
Posted 27 June 2012 - 08:47 AM
Dev-C++ is terrible. At least use wxDev-C++ if you're going to use it at all. But never use the original Dev-C++.
Dev-C++ is at least as good as Code::Blocks, I would say. Definitely better than Eclipse in my opinion. So ye, I recommend Dev-C++ if you, like me, think Visual Studio feels too cumbersome.
Orwell Dev-C++ is the recently updated version: http://orwelldevcpp.blogspot.com/
// This may be convenient: "This version has GCC built-in instead of being an aditional package. It also contains, among others, D3D9/10/11, GDI, Win32 and OpenGL headers and libraries in that flavor."
#15 Moderator* - Reputation: 5411
Posted 27 June 2012 - 09:22 AM
Hmmm... interesting there is another active fork. Good to know, thanks.Orwell Dev-C++ is the recently updated version: http://orwelldevcpp.blogspot.com/






