I'm trying to install the distorm3 python lib on windows XP so I can run a python script that imports it.

When I run the python setup.py install build --compiler=mingw32 I get this error:

C:\MinGW\bin\gcc.exe -mno-cygwin -mdll -O -Wall -Isrc -Iinclude -c src\decoder.c  -o build\temp.win32-2.6\src\decoder.o /Ox /Ob1 /Oy ""/D WIN32"" ""/D DISTORM_DY NAMIC"" ""/D SUPPORT_64BIT_OFFSET"" ""/D _MBCS"" /GF /Gm /Zi /EHsc /MT /Gy /W4 / nologo /c /TC /Fdbuild\vc90.pdb 
gcc: /Ox: No such file or directory 
gcc: /Ob1: No such file or directory 
gcc: /Oy: No such file or directory 
gcc: /D: No such file or directory 
gcc: WIN32: No such file or directory 
gcc: /D: No such file or directory 
gcc: DISTORM_DYNAMIC: No such file or directory 
gcc: /D: No such file or directory 
gcc: SUPPORT_64BIT_OFFSET: No such file or directory 
gcc: /D: No such file or directory 
gcc: _MBCS: No such file or directory 
gcc: /GF: No such file or directory 
gcc: /Gm: No such file or directory 
gcc: /Zi: No such file or directory 
gcc: /EHsc: No such file or directory 
gcc: /MT: No such file or directory 
gcc: /Gy: No such file or directory 
gcc: /W4: No such file or directory 
gcc: /nologo: No such file or directory 
gcc: /c: No such file or directory 
gcc: /TC: No such file or directory 
gcc: /Fdbuild\vc90.pdb: No such file or directory 
error: command 'gcc' failed with exit status 1

I don't ever compile C so, especially with gcc, so I'm completely unfamiliar with that whole line.

Can someone help me through installing distorm3?

link|improve this question
Something is seeing Windows and assumes you need Windows-style options (with a leading slash instead of a leading dash), effectively making it incompatible with Cygwin. – Alan Krueger Sep 20 '11 at 18:38
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.