pyAA for Python2.5

Rob Williscroft rtw at freenet.co.uk
Wed Jan 28 15:51:20 EST 2009


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/



More information about the Python-list mailing list