----- Original Message -----
From: "Tim Prince" <tprince@xxxxxxxxxxxxx>
.
.
The following URL has the most up to date pre-built gnu C and Fortran,
including 64-bit mingw with support libraries (but no C++):
http://gcc.gnu.org/wiki/GFortranBinaries
Unfortunately (for me, anyway) the 64-bit mingw that's available there
doesn't work with Vista. It suffers from the well known access() problem on
Vista. I find it extremely frustrating that there's still no 64-bit gcc
compiler available for Vista 64 users ... but no-one else seems to give a
shit.
C:\_64\C>type try.c
#include <stdio.h>
int main() {
printf("hello world\n");
return 0;
}
C:\_64\C>x86_64-pc-mingw32-gcc -o try.exe try.c
x86_64-pc-mingw32-gcc: CreateProcess: No such file or directory
Cheers,
Rob