2

我正在尝试在 Windows 上创建一个 python c++ 扩展。我的问题是,即使在使用 swig 和 distutils 之后,我似乎也无法生成 .pyd 文件(链接错误)。以下是我所做的一步一步:

在 Microsoft Visual Studio 2010 中,我创建了一个类 Hello.cpp:

#include "StdAfx.h"
#include "Hello.h"
#include <iostream>
using namespace std;


Hello::Hello(void)
{
}

void Hello::greeting(void){
   cout<<"Hello World!!"<<endl;

}



Hello::~Hello(void)
{
}

你好.h:

      #pragma once
      class Hello
      {
         public:
            Hello(void);
            ~Hello(void);
            void greeting(void);
      };  

然后我创建了一个 .i 文件 HelloWorld.i

%module HelloWorld

%{
#include "Hello.h"
%}

%include "Hello.h"

然后我痛饮

swig -c++ -python -o Hello_wrap.cpp HelloWorld.i

这似乎很成功,生成了我期望的文件。接下来我创建了 setup.py。

from distutils.core import setup, Extension

module1=Extension('HelloWorld', sources=['Hello.cpp'])

setup(name='Hello_Package', version='1.0', description='This is a demo', \
      ext_modules=[module1])

写完之后,切换到所有文件存储在一起的目录后,我进入了命令行

python setup.py build

不幸的是,这是我得到的错误

running build
running build_ext
building 'HelloWorld' extension
creating build
creating build\temp.win32-2.7
creating build\temp.win32-2.7\Release
c:\Program Files\Microsoft Visual Studio 9.0\VC\BIN\cl.exe /c /nologo /Ox /MD /W
3 /GS- /DNDEBUG -IC:\Python27\include -IC:\Python27\PC /TpHello.cpp /Fobuild\tem
p.win32-2.7\Release\Hello.obj
Hello.cpp
c:\Program Files\Microsoft Visual Studio 9.0\VC\INCLUDE\xlocale(342) : warning C
4530: C++ exception handler used, but unwind semantics are not enabled. Specify
/EHsc
creating build\lib.win32-2.7
c:\Program Files\Microsoft Visual Studio 9.0\VC\BIN\link.exe /DLL /nologo /INCRE
MENTAL:NO /LIBPATH:C:\Python27\libs /LIBPATH:C:\Python27\PCbuild /EXPORT:initHel
loWorld build\temp.win32-2.7\Release\Hello.obj /OUT:build\lib.win32-2.7\HelloWor
ld.pyd /IMPLIB:build\temp.win32-2.7\Release\HelloWorld.lib /MANIFESTFILE:build\t
emp.win32-2.7\Release\HelloWorld.pyd.manifest
LINK : error LNK2001: unresolved external symbol initHelloWorld
build\temp.win32-2.7\Release\HelloWorld.lib : fatal error LNK1120: 1 unresolved
externals
error: command '"c:\Program Files\Microsoft Visual Studio 9.0\VC\BIN\link.exe"'
failed with exit status 1120

我该怎么办这个链接错误?我假设 swig 和 distutils 工作正常,所以我不必更改代码。请帮忙!谢谢

4

1 回答 1

0

尝试以下

模块1=扩展('_HelloWorld',来源=['Hello.cpp'])

于 2012-09-18T07:33:57.490 回答