CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Page 2 of 2 FirstFirst 12
Results 16 to 24 of 24
  1. #16
    Join Date
    Apr 2004
    Location
    England, Europe
    Posts
    2,492

    Re: What C++ compiler do you use and which you think is the best?

    Quote Originally Posted by laserlight View Post
    i suppose that the ide is responsible for integrating components used for development into a single environment. Some components are more closely integrated than others
    Ha ha.
    My hobby projects:
    www.rclsoftware.org.uk

  2. #17
    Lindley is offline Elite Member Power Poster
    Join Date
    Oct 2007
    Location
    Seattle, WA
    Posts
    10,895

    Re: What C++ compiler do you use and which you think is the best?

    Quote Originally Posted by ninja9578 View Post
    Yeah, but even then it largely comes down to preference. XCode is by a wide margin the best IDE for me and Eclipse is by a wide margin the worst. But I'm sure other people would say otherwise. I actually prefer Instruments to Valgrind too. Although I use both, sometimes Instruments will show me something Valgrind doesn't and vice versa. Still, nothing on Windows compares to either one.
    I tried Googling Instruments but, unsurprisingly, didn't come up with relevant results. Could you provide a link?

  3. #18
    Join Date
    Jan 2009
    Posts
    1,689

    Re: What C++ compiler do you use and which you think is the best?

    Quote Originally Posted by Lindley View Post
    I tried Googling Instruments but, unsurprisingly, didn't come up with relevant results. Could you provide a link?
    Really? I find that very surprising. Go to /Developer/Applications It comes with XCode.

    http://theappleblog.com/2010/08/04/a...or-developers/
    http://en.wikipedia.org/wiki/Instruments_(application)

  4. #19
    Join Date
    Apr 2004
    Location
    Canada
    Posts
    1,342

    Re: What C++ compiler do you use and which you think is the best?

    Quote Originally Posted by ninja9578 View Post
    Yeah, but even then it largely comes down to preference. XCode is by a wide margin the best IDE for me and Eclipse is by a wide margin the worst. But I'm sure other people would say otherwise.
    I will, gladly.

    I use Eclipse CDT with gcc. Besides both of them (eclipse and gcc) being cross-platform, Eclipse CDT has an internal parser which parses your code on the fly and applies syntax highlighting. You can do some very cool things with the syntax highlighting, like color a method name differently if it's misspelt, or even if calling it violates const-correctness! This helps you catch a lot of mistakes before you even compile, thus saving you a lot of time. I've yet to see another IDE that can do that (To be fair, I've never tried Xcode so I can't say anything about that).
    Old Unix programmers never die, they just mv to /dev/null

  5. #20
    Lindley is offline Elite Member Power Poster
    Join Date
    Oct 2007
    Location
    Seattle, WA
    Posts
    10,895

    Re: What C++ compiler do you use and which you think is the best?

    VS2010 does on-the-fly syntax highlighting, but I turned it off to increase responsiveness.

  6. #21
    Join Date
    Jun 2008
    Posts
    592

    Re: What C++ compiler do you use and which you think is the best?

    I thought syntax highlighting was just for looks . When I had the trial of vs2010, syntax error highlighting was a pain. It took too long to figure out the syntax was right to begin with or I needed to compile the code for it to realize everything was okay. It was counter-productive
    0100 0111 0110 1111 0110 0100 0010 0000 0110 1001 0111 0011 0010 0000 0110 0110 0110 1111 0111 0010
    0110 0101 0111 0110 0110 0101 0111 0010 0010 0001 0010 0001 0000 0000 0000 0000
    0000 0000 0000 0000

  7. #22
    Join Date
    Jun 2010
    Location
    Germany
    Posts
    2,675

    Re: What C++ compiler do you use and which you think is the best?

    Sorry to bump that old thread, but I think it's the best place to ask...

    A fellow developer of mine wants to learn C++. He is no noob, rather a generally experienced developer who just hasn't experience with this language. He showed me a book he wants to use, which I somehow could "approve". It's based on g++ and accompanied by a CD, but that's version 2.95.2. But the book at least covers the '98 standard.

    I recommended to use a newer version of g++ together with a convenient IDE (which is nothing that's mentioned in the book). I didn't see any concrete suggestions for something like that here in that thread, and a Google search gave me many hits of which I'm not really sure how relevant they are.

    Can anyone in here give me a link to download a recent version of g++ bundled with a convenient IDE?

    This is for Windows.

    That's not for me. Some of you might already have seen that I'm using VC++ and am more or less happy with it...

    Any pointers?

    TIA
    I was thrown out of college for cheating on the metaphysics exam; I looked into the soul of the boy sitting next to me.

    This is a snakeskin jacket! And for me it's a symbol of my individuality, and my belief... in personal freedom.

  8. #23
    Join Date
    Jun 2008
    Posts
    592

    Re: What C++ compiler do you use and which you think is the best?

    http://www.codeblocks.org/downloads/26 download codeblocks-10.05mingw-setup.exe

    It comes with gcc/g++ 4.4.1 which isn't that old.
    0100 0111 0110 1111 0110 0100 0010 0000 0110 1001 0111 0011 0010 0000 0110 0110 0110 1111 0111 0010
    0110 0101 0111 0110 0110 0101 0111 0010 0010 0001 0010 0001 0000 0000 0000 0000
    0000 0000 0000 0000

  9. #24
    Join Date
    Sep 2010
    Posts
    31

    Re: What C++ compiler do you use and which you think is the best?

    On Windows, I actually prefer Nuwen MinGW "distro", which is frequently updated (GCC 4.5.1 at the moment, and includes a fresh Boost version). Then I install GDB from MinGW SourceForge page, plus dependencies (expat).
    I like to work in NetBeans C/C++ IDE.

    Compiling the code in VC++ too is always preferred, to get a nice, standard compliant code. As is forcing the compiler to work in -pedantic -ansi modes. Also, I try to compile the code on Linux too, to make sure it's portable, as long, as I am not forced to program for one OS only.

    Links:
    http://nuwen.net/mingw.html
    http://sourceforge.net/projects/mingw/files/
    http://sourceforge.net/projects/ming...m/GDB/GDB-7.2/
    http://sourceforge.net/projects/ming...expat-2.0.1-1/
    http://netbeans.org/

Page 2 of 2 FirstFirst 12

Posting Permissions

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





Click Here to Expand Forum to Full Width

Featured