Page 1 of 2 12 LastLast
Results 1 to 15 of 16

Thread: C++ compiler for Windows

  1. #1
    Very VIP person Tech Admin Rantz's Avatar
    Join Date
    Apr 2006
    Posts
    17,631
    Articles
    1

    Default C++ compiler for Windows

    Not that there's a lack of choices, I'd just like to hear what you guys consider to be the best choice. I'm fine with either full IDEs or just simple compilers/builders to team with Notepad++ or whatever.

  2. #2
    That's me! blackmage_nuke's Avatar
    Join Date
    Aug 2005
    Location
    Yes
    Posts
    8,503
    Blog Entries
    3

    Default

    I personally like Visual C++ but i havent done anything too extravagant with c++ besides some really basic directx so im not really an expert.
    Kefka's coming, look intimidating!
    Have a nice day!!

  3. #3
    Old school, like an old fool. Flying Mullet's Avatar
    Join Date
    Apr 2003
    Location
    Napping in a peach tree.
    Posts
    19,185
    Articles
    6
    Blog Entries
    7
    Contributions
    • Former Administrator
    • Former Cid's Knight
    • Former Senior Site Staff

    Default

    I haven't used much since Borland during my college days during the late 90s, so I'm afraid I don't have much help to offer. I can tell you that for a DOS based compiler, Borland was the .
    Figaro Castle

  4. #4
    diafnaoplzkthnxbai NeoTifa's Avatar
    Join Date
    Jun 2005
    Location
    in psy's panties <3
    Posts
    3,411

    Default

    I haven't used C++ in a while but I used Visual C++
    Oh gods, why? ಥ_ಥ


  5. #5
    i n v i s i b l e Tech Admin o_O's Avatar
    Join Date
    Jun 2001
    Location
    New Zealand
    Posts
    2,957
    Blog Entries
    1

    FFXIV Character

    Humphrey Squibbles (Sargatanas)

    Default

    Almost all of my C++ development has been on Linux, so the gcc (g++) compiler has been my favourite in conjunction with the Anjuta IDE.

    On Windows though, I learnt in Visual C++, which I pretty much hated 'cause I don't like Microsoft's programming ideals (type a little bit, drag some window controls here and there, click 35 times then type a little more) so I switched to Dev C++. It's old but it's more the style of IDE that I'm used to, where typing everything out is the norm moreso than VC++. And it comes bundled with the mingw compiler, which is just dandy.

  6. #6
    Got obliterated Recognized Member Shoeberto's Avatar
    Join Date
    Jun 2000
    Location
    THE OC BABY
    Posts
    12,018
    Blog Entries
    1
    Contributions
    • Former Cid's Knight

    Default

    Eclipse is where it's at, dawg. I used to shun doing Eclipse because it's built on Java, but it's a damn fine application. Dev-C++ is so freaking antiquated and buggy these days, just don't bother. And MS Visual C++, the last I used it, doesn't adhere to the ANSI C++ standards, which means learning Microsoft C++, not C++ that everything else ever uses.

    Get Eclipse for C++ developers. It's seriously a darn fine IDE and that package has, I believe, MiniGW packaged with it, which is just a Windows build of common Unix build tools (including GCC). At work right now I'm doing a project where I have to do a SQL database, Java server backend and a Flex client app and I can manage all three of them from the same window in Eclipse without any difficulty. It's gr8.


  7. #7
    Very VIP person Tech Admin Rantz's Avatar
    Join Date
    Apr 2006
    Posts
    17,631
    Articles
    1

    Default

    I'll try Eclipse. I've only used MS Visual C++ up until now, it's kind of bulky and if it doesn't adhere to the standards then I'm all the more eager to find something better.

  8. #8
    Old school, like an old fool. Flying Mullet's Avatar
    Join Date
    Apr 2003
    Location
    Napping in a peach tree.
    Posts
    19,185
    Articles
    6
    Blog Entries
    7
    Contributions
    • Former Administrator
    • Former Cid's Knight
    • Former Senior Site Staff

    Default

    I love Eclipse based IDE's, but then again, I'm a Java developer.
    Figaro Castle

  9. #9
    diafnaoplzkthnxbai NeoTifa's Avatar
    Join Date
    Jun 2005
    Location
    in psy's panties <3
    Posts
    3,411

    Default

    Netbeans does C++ <3 And I do love my Netbeans. And omg Mulley is a man of my heart!!!

    for(int i = 0; i < 100; i++) {system.out.println("I <3 Mulleykins!!!!");}
    Oh gods, why? ಥ_ಥ


  10. #10
    Old school, like an old fool. Flying Mullet's Avatar
    Join Date
    Apr 2003
    Location
    Napping in a peach tree.
    Posts
    19,185
    Articles
    6
    Blog Entries
    7
    Contributions
    • Former Administrator
    • Former Cid's Knight
    • Former Senior Site Staff

    Default

    Quote Originally Posted by NeoTifa View Post
    Netbeans does C++ <3 And I do love my Netbeans. And omg Mulley is a man of my heart!!!

    for(int i = 0; i < 100; i++) {system.out.println("I <3 Mulleykins!!!!");}
    String[] praiseArray = {"NeoTifa Rules!\n", "NeoTifa Rules!\n", "NeoTifa Rules!\n", "NeoTifa Rules!\n", "NeoTifa Rules!\n", "NeoTifa Rules!\n", "NeoTifa Rules!\n", "NeoTifa Rules!\n", "NeoTifa Rules!\n"}

    for(String praise: praiseArray)
    System.out.println(praise);
    Figaro Castle

  11. #11
    Very VIP person Tech Admin Rantz's Avatar
    Join Date
    Apr 2006
    Posts
    17,631
    Articles
    1

    Default

    cout << "oh man, don't let it turn into one of those threads!" << endl << ":(";

  12. #12
    Old school, like an old fool. Flying Mullet's Avatar
    Join Date
    Apr 2003
    Location
    Napping in a peach tree.
    Posts
    19,185
    Articles
    6
    Blog Entries
    7
    Contributions
    • Former Administrator
    • Former Cid's Knight
    • Former Senior Site Staff

    Default

    <input type="button" value="Too Late" onclick="alert('It\'s already one of those threads. :-p');" />
    Figaro Castle

  13. #13
    That's me! blackmage_nuke's Avatar
    Join Date
    Aug 2005
    Location
    Yes
    Posts
    8,503
    Blog Entries
    3

    Default

    int goodbyegentlemen = 0;
    cout << 1/goodbyegentlemen;
    Kefka's coming, look intimidating!
    Have a nice day!!

  14. #14
    i n v i s i b l e Tech Admin o_O's Avatar
    Join Date
    Jun 2001
    Location
    New Zealand
    Posts
    2,957
    Blog Entries
    1

    FFXIV Character

    Humphrey Squibbles (Sargatanas)

    Default

    ["Lol, I have nothing to contribute.", "So here's a quine in ruby.", "s=\"putc 115;putc 61;p s;puts s\"\nputc 115;putc 61;p s;puts s"].each{ |thing| puts thing }

  15. #15
    Got obliterated Recognized Member Shoeberto's Avatar
    Join Date
    Jun 2000
    Location
    THE OC BABY
    Posts
    12,018
    Blog Entries
    1
    Contributions
    • Former Cid's Knight

    Default

    private var myButton:Button;
    private var myButtonConfig:ButtonConfig;

    private function initButton():void {

    ... oh, forget it. The punch line is "I smurfed your mother."


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •