>> configure:1340: checking for gcc
>> configure:1356: found /c/Program Files/OpenAxiom/bin/gcc

You're begging for failures when you install to a PATH with spaces. For example:

C:\Users\Jon\Documents\CDev\sandbox>echo %PATH%
C:\"spacey path\mingw-rvb\bin";...

C:\Users\Jon\Documents\CDev\sandbox>type helloworld.c
#include <stdio.h>
int main(int argc, char *argv[]) { printf("Hello World!\n"); return 0; }

C:\Users\Jon\Documents\CDev\sandbox>gcc --version
gcc (rubenvb-4.6.3) 4.6.3
...

C:\Users\Jon\Documents\CDev\sandbox>gcc -Wall -O3 -o hw.exe helloworld.c
gcc: error: CreateProcess: No such file or directory

Jon

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Mingw-w64-public mailing list
Mingw-w64-public@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mingw-w64-public

Reply via email to