|
Original |
Translation |
|
227
|
To let Distutils compile your extension with Cygwin you now have to type ::
|
|
|
228
|
python setup.py build --compiler=cygwin
|
|
|
229
|
and for Cygwin in no-cygwin mode [#]_ or for MinGW type::
|
|
|
230
|
python setup.py build --compiler=mingw32
|
|
|
231
|
|
232
|
Information about building the required libraries for the MinGW environment.
|
|
|
233
|
|
|
|
234
|
This also means you could replace all existing COFF-libraries with OMF-libraries of the same name.
|
|
|
235
|
Check http://sources.redhat.com/cygwin/ and http://www.mingw.org/ for more information
|
|
|
236
|
Then you have no POSIX emulation available, but you also don't need :file:`cygwin1.dll`.
|
|