Failed building 2.5rc1 pythoncore on VC8
Hi, I downloaded RC1 to give it a go. I failed to build pythoncore with VC8. The error is: Linking... Creating library .\./python25_d.lib and object .\./python25_d.exp config.obj : error LNK2001: unresolved external symbol _init_types ./python25_d.dll : fatal error LNK1120: 1 unresolved externals Thanks, Chris
VC8 is not a supported compiler at this point. However, patches are greatly accepted. The _types module was added late and probably VC6 and VC8 project files did not get updated. You can search for the necessary mods to the VC7 proj file(s) on python-checkins. n -- On 8/18/06, christopher baus <christopher@baus.net> wrote:
Hi,
I downloaded RC1 to give it a go.
I failed to build pythoncore with VC8.
The error is:
Linking... Creating library .\./python25_d.lib and object .\./python25_d.exp config.obj : error LNK2001: unresolved external symbol _init_types ./python25_d.dll : fatal error LNK1120: 1 unresolved externals
Thanks,
Chris
_______________________________________________ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/nnorwitz%40gmail.com
VC8 is not a supported compiler at this point. However, patches are greatly accepted.
The _types module was added late and probably VC6 and VC8 project files did not get updated. You can search for the necessary mods to the VC7 proj file(s) on python-checkins.
Index: pythoncore.vcproj =================================================================== --- pythoncore.vcproj (revision 1020) +++ pythoncore.vcproj (working copy) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="Windows-1252"?> <VisualStudioProject ProjectType="Visual C++" - Version="8,00" + Version="8.00" Name="pythoncore" ProjectGUID="{CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}" RootNamespace="pythoncore" @@ -558,6 +558,10 @@ > </File> <File + RelativePath="..\Modules\_typesmodule.c" + > + </File> + <File RelativePath="..\Modules\_weakref.c" > </File>
participants (2)
-
christopher baus -
Neal Norwitz