CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Mar 2009
    Posts
    3

    A free linux compiler?

    Hello everyone,
    I usually do all my programming with Bloodshed Dev-C++ on 32-bit windows vista but I also have a backup computer that runs on Ubuntu 8.10 linux. Is there any free compiler or interpreter out there for linux? Pref. something that can create windows executables. Nothing I program on that computer will be for commercial use... thanks

  2. #2
    Join Date
    Dec 2003
    Posts
    45

    Re: A free linux compiler?

    gcc mingw

  3. #3
    Join Date
    Mar 2008
    Posts
    30

  4. #4
    Join Date
    Dec 2005
    Location
    England
    Posts
    86

    Re: A free linux compiler?

    gcc is the standard compiler collection. It probably comes with your distribution. Get mingw32 (apt-get mingw32) for a Windows cross-compiler for gcc. You can also use winelib to develop Linux applications using the Windows API; these are easier to debug and so on, and should then compile cleanly with mingw32.

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