It looks like python community doesn't intend to "fix" this problem due to it is probably not a bug.
a quick work around is
open /distutils/msvc9compiler.py
find def manifest_setup_ldargs(self, output_filename, build_temp, ld_args)
add
ld_args.append('/MANIFEST')
right beneath ld_args.append('/MANIFESTFILE:' + temp_manifest)
it will fix a link error.
本文提供了一个解决Python中遇到的特定链接错误的方法,通过在相关代码文件中添加一行代码来修复问题。

被折叠的 条评论
为什么被折叠?



