CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6

Thread: Compiler Type

  1. #1
    Join Date
    Feb 2009
    Posts
    135

    Compiler Type

    So... I just installed CodeBlocks, as was suggested to me. I'm given a list of Compiler options to choose from, and I'm wondering which I should choose:

    GNU GCC Compiler
    Microsoft Visual C++ Toolkit 2003
    Microsoft Visual C++ 2005/2008
    Borland C++ Compiler (5.5, 5.82)
    Digital Mars Compiler
    OpenWatcom (W32) Compiler
    GNU GCC Compiler for MSP430
    Cygwin GCC
    Intel C/C++ Compiler
    SDCC Compiler
    Tiny C Compiler
    GDC D Compiler
    Digital Mars D Compiler
    GNU ARM GCC Compiler
    GNU AVR GCC Compiler
    GNU GCC Compiler for PowerPC
    GNU GCC Compiler for TriCore

  2. #2
    Join Date
    Apr 1999
    Posts
    27,449

    Re: Compiler Type

    Quote Originally Posted by BleaS View Post
    So... I just installed CodeBlocks, as was suggested to me. I'm given a list of Compiler options to choose from, and I'm wondering which I should choose:
    Since CodeBlocks integrates better with GCC, then that is the one you should choose (provided you've installed GCC).

    Regards,

    Paul McKenzie

  3. #3
    Join Date
    Nov 2003
    Posts
    1,902

    Re: Compiler Type

    Yeah, "GNU GCC Compiler" is what you want. If you have any of the listed compilers installed, you could use those as well.

    If you installed "codeblocks-8.02mingw-setup.exe", then MinGW was installed as well. This is just the name of the port of GCC for Windows.

    Regardless, use this MinGW distribution for a much more up-to-date version of GCC, plus a handful of pre-compiled libraries (like Boost).
    http://nuwen.net/mingw.html
    Just download and follow the instructions: http://nuwen.net/mingw.html#installation

    gg

  4. #4
    Join Date
    Jun 2008
    Posts
    37

    Re: Compiler Type

    What is wrong with Microsoft Visual C++ 2005/2008 ? You care to share ?

  5. #5
    Join Date
    Feb 2009
    Posts
    135

    Re: Compiler Type

    I left it as the default (But I'll check out Ming), however, whenever I tell it to build, it does nothing... I have no clue if this has to do with the compiler or what, but it's sort of silly since I cannot even build the program in CodeBlocks. It otherwise looks nice.

  6. #6
    Join Date
    Apr 1999
    Posts
    27,449

    Re: Compiler Type

    Quote Originally Posted by Belzeski View Post
    What is wrong with Microsoft Visual C++ 2005/2008 ? You care to share ?
    Nothing. It just doesn't integrate in the CodeBlocks IDE as well as gcc does. The major problem is that the debugger for VC++ doesn't work in the CodeBlocks IDE, while gdb does.

    Regards,

    Paul McKenzie

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