Kottiyath wrote in news:6a594643-f6a2-4d8d-aab3-27eb16cb2fb8
@b38g2000prf.googlegroups.com in comp.lang.python:

> 
> I have mingw32-gcc in my path. If I try that too -it fails.
> 
> C:\Documents and Settings\Guest\pyAA>python setup.py install -c
> "mingw32-gcc"
> invalid command name 'mingw32-gcc'
> 

All the examples I found via google have the tool name as "mingw32"
so try:

        python setup.py install -c mingw32

or

        python setup.py build --compiler=mingw32 install


The compiler that the MinGW package installs is gcc.

You shoulf be able to verify it is on your path by typing: 

        gcc --help
or 
        gcc --version

and see some output.


Rob.
-- 
http://www.victim-prime.dsl.pipex.com/
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to