@@ -399,6 +399,43 @@ Mac OS X: You need to add the "-traditional-cpp" option to the
399399 the test_largefile test is only expected to work on a Unix UFS
400400 filesystem (how to check for this on Mac OS X?).
401401
402+ Cygwin: Cygwin Python builds OOTB when configured as follows:
403+
404+ configure --with-threads=no
405+
406+ assuming Cygwin 1.1.8-2 and gcc 2.95.3-1 or later. At the time
407+ of this writing, Cygwin pthread support is being significantly
408+ enhanced. Hopefully, there will be a Cygwin Python with thread
409+ support soon.
410+
411+ Cygwin Python supports the building of shared extensions via the
412+ traditional Misc/Makefile.pre.in and the newer distutils methods.
413+
414+ On NT/2000, the following regression tests fail:
415+
416+ test_poll (hang)
417+ test_strftime
418+
419+ Due to the test_poll hang on NT/2000, one should run the
420+ regression test using the following:
421+
422+ PYTHONPATH= ./python.exe -tt ./Lib/test/regrtest.py -l -x test_poll
423+
424+ On 9X/Me, in addition the above NT/2000 failures, it has been
425+ reported that the following regression tests also fail:
426+
427+ test_pwd
428+ test_select (hang)
429+ test_socket
430+
431+ Due to the test_poll and test_select hang on 9X/Me, one should
432+ run the regression test using the following:
433+
434+ PYTHONPATH= ./python.exe -tt ./Lib/test/regrtest.py -l -x test_poll -x test_select
435+
436+ Help trying to track down the root causes for these known problems
437+ will be greatly appreciated.
438+
402439
403440Configuring threads
404441-------------------
0 commit comments