Standalone C ++ Compiler

I need a standalone C ++ compiler that does not require installation. Something that can be run from a directory or from a USB key.

I have googled, but I can not find exactly what I am looking for. It doesn't matter if it's just a command line compiler or is an IDE. I would appreciate a link to a page where I can actually upload the file I need.

Since I'm still not familiar with C ++, just make sure you all understand what I'm looking for: I need a program so that I can run this program in the source file (.cpp) and create and execute it.

I'm on 64-bit Windows 7.

EDIT: just to be clear. I would prefer to just download the zip file (or something like that) and unzip it to a directory on the computer, and then run it.

+5
source share
2 answers

I recommend the STL MinGW distro , which is xcopyable and includes the latest GCC (currently GCC 4.7).

+10
source

SO user rubenv has some Mingw-w64 distributions:

For gcc 4.7.0 . Grab one with win64in the file name.

He also called somewhere, but I can find a 32-bit version of Windows right now.

Just download and unzip the file. However, you will have to update your PATH manually. However, no enhancement such as an STL distribution.

+2
source

All Articles