This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: _collections module fail to build on cygwin
Type: Stage:
Components: Build Versions: Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: amaury.forgeotdarc, rpetrov
Priority: normal Keywords:

Created on 2009-01-01 20:03 by rpetrov, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
py-trunk-incl-objimpl.h-patch rpetrov, 2009-01-01 20:03 use macro to export __PyGC_generation0
Messages (2)
msg78723 - (view) Author: Roumen Petrov (rpetrov) * Date: 2009-01-01 20:03
make log:
gcc -shared -Wl,--enable-auto-image-base
.../Modules/_collectionsmodule.o -L/usr/local/lib -L. -lpython2.7 -o
build/lib.cygwin-1.5.25-i686-2.7/_collections.dll
.../Modules/_collectionsmodule.o: In function `deque_iter':
.../Modules/_collectionsmodule.c:970: undefined reference to
`__PyGC_generation0'
....
msg78742 - (view) Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * (Python committer) Date: 2009-01-02 00:05
Committed a different correction in r68145: 
according to documention, _PyObject_GC_TRACK should not be used in 
extension modules.

Thanks for the report.
History
Date User Action Args
2022-04-11 14:56:43adminsetgithub: 49051
2009-01-02 00:05:06amaury.forgeotdarcsetstatus: open -> closed
resolution: fixed
messages: + msg78742
nosy: + amaury.forgeotdarc
2009-01-01 20:03:38rpetrovcreate