Rajagopalan, Karthik wrote:
Hi ASPython_Techies,
I am currently facing unresolved external symbol problems while tying to get debug build of an executable using Active State Python 23 , MSVisual Studio .NET 2003 and Swig. Following are the list
of unresolved symbols :
error LNK2019: unresolved external symbol __imp___Py_Dealloc
error LNK2019: unresolved external symbol __imp___Py_NegativeRefcount
error LNK2001: unresolved external symbol __imp___Py_RefTotal
error LNK2019: unresolved external symbol __imp__Py_InitModule4TraceRefs
error LNK2019: unresolved external symbol __imp___PyObject_DebugMalloc
Should these symbols not available in ASPython 23 downloaded library Python23.lib???
How should I pass the above problem? Can someone highlight a solution for this?

ActivePython 2.3 versions are built with MSVC version 6, i.e. an earlier version that Visual Studio .NET. Core Python (and ActivePython) have only moved to the Visual Studio .NET 2003 compiler (aka MSVC7.1) for Python version 2.4. You will need to:
- use MSVC6 to build extensions against ActivePython 2.3 (or core Python 2.3); or
- re-compile your own Python 2.3 using MSVC7.1; or
- wait for ActivePython 2.4 builds (or Python 2.4 builds from python.org)


Sincerely,
Trent


-- Trent Mick [EMAIL PROTECTED] _______________________________________________ ActivePython mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs Other options: http://listserv.ActiveState.com/mailman/listinfo/ActivePython



Reply via email to