I've installed cygwin environment on Windows. There is gcc 4.3. How to install gcc 4.4 in this environment?
+2
A:
If you don't need the cygwin environment for special reasons, I'd go for Mingw with the gcc 4.4. You can find builds on: http://www.tdragon.net/recentgcc/.
Tobias Langner
2009-06-18 09:32:17
+2
A:
The alternative is to build one yourself, but it will be extremely slow on cygwin. If you are a Linux user, you can build a native compiler (which runs in cmd.exe on windows, and produces native win32 binaries) on Linux. It is much faster (order of magnitude faster in my experience).
Otherwise, mingw is a good solution, although in my experience, the binary from equation.com work better for gcc 4.4 (there is no official gcc 4.4 from MinGW yet)
David Cournapeau
2009-06-18 09:37:07
It takes a while but the compilation process is straight forward. Just a hint: You save quite a bit of time if you make sure you have all the required libraries installed (e.g. download the source, configure, build and install them). For GCC in C and C++ mode you need the following libs: GMP, MPFR and CLooG-PPL
Nils Pipenbrinck
2009-06-18 11:17:18
A:
hi,
i am very interested in implimenting gcc 4.4 with linux on windows . but how can do i do it ?
thanks
what do you mean 'with linux'?You can install cygwin environment on windows:http://www.cygwin.com/setup.exe
Andreo
2009-06-23 11:07:59