Slashdot Mirror


GCC 3.3 Released

devphil writes "The latest version of everyone's favorite compiler, GCC 3.3, was released today. New features, bugfixes, and whatnot, are all available off the linked-to page. (Mirrors already have the tarballs.) Let the second-guessing begin!"

3 of 400 comments (clear)

  1. Hmph by magi · · Score: 0, Troll

    About every GCC release breaks most of the software written for previous version, especially for C++, as it's standard keeps "refining" constantly, as does GCC's interpretation of it. Not to mention the extensions.

    Right now I'm busy changing all "#include" to "#include", "friend Foo" to "friend class Foo", and adding "using namespace std" everywhere. What next?

  2. Re:gcc 3.3 fails on glibc 2.3.2 by Master+Bait · · Score: 0, Troll
    That's right. GCC is BUG FREE and if your software doesn't compile, it's because of your crappy code!

    --
    "Only in their dreams can men truly be free 'twas always thus, and always thus will be."
    --Tom Schulman
  3. Re:inline by t · · Score: 0, Troll

    For normal code, yes. For kernel code, maybe. For instance, if you're mucking with the registers, or stack or other non-normal stuff then you may need to ensure that a particular segment of code does not actually make a function call as that would be disastrous.