問題描述
大家好,我正在嘗試將我在 VS2010 (c++) 中創建的多文件項目 SWIG 轉換為 python.我設法鏈接了 Python26.lib 文件,并讓 SWIG 為我的主 .cpp 文件生成了一個包裝器 .cpp 文件.我已經設置我的代碼來構建一個擴展名為 .pyd 的 .dll.
這是我目前擁有的 .i 文件:
%module HiveGPS%{#include "ou_thread.h"#include "HiveGPS.h"%}%include ou_thread.h% 包括 HiveGPS.h
而且我已經設法獲得了 .py 和 .pyc 文件.現在,根據我的理解,為了運行我的 .py 文件,我需要將它鏈接到我的 .pyd 文件,但是當我嘗試使用 VS2010 使用上面列出的設置構建我的項目時,它會抱怨我的 Thread 類正在使用:
1>------ 構建開始:項目:HiveGPS,配置:發布 Win32 ------1> 構建于 2011 年 5 月 11 日下午 1:41:30 開始.1>初始化構建狀態:1>觸摸ReleaseHiveGPS.unsuccessfulbuild".1>Cl編譯:1>HiveGPS_wrap.cpp1>c:users*desktophivegpshivegpsou_thread.h(57):錯誤 C2146:語法錯誤:缺少;"在標識符m_strName"之前1>c:users*desktophivegpshivegpsou_thread.h(57):錯誤 C4430:缺少類型說明符 - 假設為 int.注意:C++ 不支持 default-int1>c:users*desktophivegpshivegpsou_thread.h(57):錯誤 C4430:缺少類型說明符 - 假設為 int.注意:C++ 不支持 default-int1>c:users*desktophivegpshivegpsou_thread.h(64):錯誤 C2146:語法錯誤:缺少;"在標識符getName"之前1>c:users*desktophivegpshivegpsou_thread.h(64):錯誤 C4430:缺少類型說明符 - 假設為 int.注意:C++ 不支持 default-int1>c:users*desktophivegpshivegpsou_thread.h(64):錯誤 C4430:缺少類型說明符 - 假設為 int.注意:C++ 不支持 default-int1>c:users*desktophivegpshivegpsou_thread.h(64):警告 C4183:'getName':缺少返回類型;假定是一個返回int"的成員函數1>c:users*desktophivegpshivegpsou_thread.h(98):錯誤 C2146:語法錯誤:缺少;"在標識符m_strName"之前1>c:users*desktophivegpshivegpsou_thread.h(98):錯誤 C4430:缺少類型說明符 - 假設為 int.注意:C++ 不支持 default-int1>c:users*desktophivegpshivegpsou_thread.h(98):錯誤 C4430:缺少類型說明符 - 假設為 int.注意:C++ 不支持 default-int1>c:users*desktophivegpshivegpsou_thread.h(104):錯誤C2146:語法錯誤:缺少';'在標識符getName"之前1>c:users*desktophivegpshivegpsou_thread.h(104):錯誤 C4430:缺少類型說明符 - 假設為 int.注意:C++ 不支持 default-int1>c:users*desktophivegpshivegpsou_thread.h(104):錯誤 C4430:缺少類型說明符 - 假設為 int.注意:C++ 不支持 default-int1>c:users*desktophivegpshivegpsou_thread.h(104):警告 C4183:'getName':缺少返回類型;假定是一個返回int"的成員函數1>c:users*desktophivegpshivegpsou_thread.h(115):錯誤C2146:語法錯誤:缺少';'在標識符 'msg' 之前1>c:users*desktophivegpshivegpsou_thread.h(115):錯誤 C4430:缺少類型說明符 - 假設為 int.注意:C++ 不支持 default-int1>c:users*desktophivegpshivegpsou_thread.h(115):錯誤 C4430:缺少類型說明符 - 假設為 int.注意:C++ 不支持 default-int1>c:users*desktophivegpshivegpsou_thread.h(118):錯誤C2146:語法錯誤:缺少';'在標識符getMessage"之前1>c:users*desktophivegpshivegpsou_thread.h(118):錯誤 C4430:缺少類型說明符 - 假設為 int.注意:C++ 不支持 default-int1>c:users*desktophivegpshivegpsou_thread.h(118):錯誤 C4430:缺少類型說明符 - 假設為 int.注意:C++ 不支持 default-int1>c:users*desktophivegpshivegpsou_thread.h(118):警告 C4183:'getMessage':缺少返回類型;假定是一個返回int"的成員函數1>c:users*desktophivegpshivegpsou_thread.h(51): error C2011: 'openutils::Thread' : 'class' 類型重新定義1>c:users*desktophivegpshivegpsou_thread.h(51) :參見openutils::Thread"的聲明1>c:users*desktophivegpshivegpsou_thread.h(93): error C2011: 'openutils::Mutex' : 'class' 類型重新定義1>c:users*desktophivegpshivegpsou_thread.h(93) :參見'openutils::Mutex'的聲明1>c:users*desktophivegpshivegpsou_thread.h(113):錯誤 C2011:'openutils::ThreadException':'class' 類型重新定義1>c:users*desktophivegpshivegpsou_thread.h(113) :參見openutils::ThreadException"的聲明1>c:users*desktophivegpshivegpsHiveGPS.h(29):錯誤 C2504:'openutils::Thread':基類未定義1>c:users*desktophivegpshivegpsHiveGPS.h(53): error C2079: 'HiveGPS::readWriteMutex' 使用未定義的類 'openutils::Mutex'1>HiveGPS_wrap.cpp(3086):錯誤 C2027:使用未定義類型openutils::Thread"1>c:users*desktophivegpshivegpsou_thread.h(51) :參見openutils::Thread"的聲明1>HiveGPS_wrap.cpp(3086):致命錯誤C1903:無法從之前的錯誤中恢復;停止編譯1>1> 構建失敗.1>1> 已用時間 00:00:02.10========== 構建:0 成功,1 失敗,0 最新,0 跳過 ==========
所有這些錯誤(減去最后一個)基本上都是說 String 類是以某種方式實現的,是否與 Python 對 String 類的定義相沖突?最后一個錯誤是抱怨 Thread 類,這可能是同樣的問題嗎?
所有這些都說:有人能告訴我我做錯了什么嗎,或者更好,請指點我如何為 VS2010 執行此操作的教程(SWIG 站點是 2008 年的).
如果不能這樣做,我可以將我生成的 .py 文件以某種方式鏈接到 .dll 文件嗎?
抱歉解釋太長,但我對這個有點迷茫,所以我決定解釋一切.
好的,我正在使用 swig 和 VS2010 沒有問題...
就您而言,看起來更像是您在鏈接方面存在問題.除了檢查庫之外,不要忘記檢查您正在鏈接的 32-64 位庫.嘗試將所有作為 x86 目標鏈接為故障安全.并且不要使用AnyCpu.
<小時>如何在 VS2010 下使用 SWIG.
讓我們定義您想要獲取 mylib.py,因此您創建了一些 SWIG 接口文件,其中 mylib.i 作為主"文件.我假設您已經有了一個包含 C++ 類的項目解決方案.
(1) 首先為 SWIG 接口創建 C++ 項目.使用應該創建 C++ DLL 存根的 Visual C++-> 類庫項目.我把所有的 .i 文件放在那里.并將 Visual Studio 設置為將 .i 高亮顯示為 .h - 這很方便.
(1.1) 將 mylib_wrap.cxx 文件添加到項目中(在 swig 尚未生成文件時創建一個空文件)
(2)
a) 在 mylib.i 上按右鍵,選擇屬性.
b) 將 ItemType 設置為自定義構建工具".
在自定義構建步驟窗口中:
c) 命令行字段應該是這樣的:
echo 為了正常運行,請確保以下環境變量是正確設置:回聲 PYTHON_INCLUDE:%PYTHON_INCLUDE%回聲 PYTHON_LIB:%PYTHON_LIB%回聲C:swigswig.exe -c++ -python %(FullPath)
將 C:swigswig.exe 更改為 SWIG 的路徑
d) 在輸出字段中:
$(InputName)_wrap.cxx
(3) 轉到此項目屬性:
a) C++ 選項卡 -> 其他包含目錄
添加 $(PYTHON_INCLUDE);...
c) 鏈接器 -> 輸出文件
你需要的路徑\_mylib.pyd
d) 鏈接器 -> 啟用增量鏈接
設置為否 (/INCREMENTAL:NO)
e) 鏈接器 -> 輸入 -> 附加依賴
添加 $(PYTHON_LIB);...
f) C/C++ -> 預編譯頭:關閉預編譯頭文件,設置 **Not Using Precompiled Headers* 并在
之后刪除 stdafx 文件g) 常規標簽.只需檢查是否設置了這些:
配置類型 = 動態庫 (.dll)
字符集 = 使用 Unicode 字符集
公共語言運行時支持 = 無公共語言運行時支持
它編譯.?/p>
附言并且不要忘記在您的系統中設置 %PYTHON_INCLUDE% 和 %PYTHON_LIB% 變量.
Hey Everybody, I'm trying to SWIG a multi file project that I made in VS2010 (c++) to python. I've managed to link the Python26.lib file, and have SWIG generating a wrapper .cpp file for my main .cpp file. I've set my code to build a .dll with the extension .pyd.
This is the .i file I have currently:
%module HiveGPS
%{
#include "ou_thread.h"
#include "HiveGPS.h"
%}
%include ou_thread.h
%include HiveGPS.h
And I've mangaed to get a .py and .pyc file. Now, from my understanding in order to run my .py file, I need to link it to my .pyd file, but when I try to use VS2010 to build my project with the settings I listed above, it complains about a Thread class I'm using:
1>------ Build started: Project: HiveGPS, Configuration: Release Win32 ------
1>Build started 5/11/2011 1:41:30 PM.
1>InitializeBuildStatus:
1> Touching "ReleaseHiveGPS.unsuccessfulbuild".
1>ClCompile:
1> HiveGPS_wrap.cpp
1>c:users*desktophivegpshivegpsou_thread.h(57): error C2146: syntax error : missing ';' before identifier 'm_strName'
1>c:users*desktophivegpshivegpsou_thread.h(57): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:users*desktophivegpshivegpsou_thread.h(57): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:users*desktophivegpshivegpsou_thread.h(64): error C2146: syntax error : missing ';' before identifier 'getName'
1>c:users*desktophivegpshivegpsou_thread.h(64): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:users*desktophivegpshivegpsou_thread.h(64): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:users*desktophivegpshivegpsou_thread.h(64): warning C4183: 'getName': missing return type; assumed to be a member function returning 'int'
1>c:users*desktophivegpshivegpsou_thread.h(98): error C2146: syntax error : missing ';' before identifier 'm_strName'
1>c:users*desktophivegpshivegpsou_thread.h(98): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:users*desktophivegpshivegpsou_thread.h(98): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:users*desktophivegpshivegpsou_thread.h(104): error C2146: syntax error : missing ';' before identifier 'getName'
1>c:users*desktophivegpshivegpsou_thread.h(104): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:users*desktophivegpshivegpsou_thread.h(104): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:users*desktophivegpshivegpsou_thread.h(104): warning C4183: 'getName': missing return type; assumed to be a member function returning 'int'
1>c:users*desktophivegpshivegpsou_thread.h(115): error C2146: syntax error : missing ';' before identifier 'msg'
1>c:users*desktophivegpshivegpsou_thread.h(115): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:users*desktophivegpshivegpsou_thread.h(115): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:users*desktophivegpshivegpsou_thread.h(118): error C2146: syntax error : missing ';' before identifier 'getMessage'
1>c:users*desktophivegpshivegpsou_thread.h(118): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:users*desktophivegpshivegpsou_thread.h(118): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:users*desktophivegpshivegpsou_thread.h(118): warning C4183: 'getMessage': missing return type; assumed to be a member function returning 'int'
1>c:users*desktophivegpshivegpsou_thread.h(51): error C2011: 'openutils::Thread' : 'class' type redefinition
1> c:users*desktophivegpshivegpsou_thread.h(51) : see declaration of 'openutils::Thread'
1>c:users*desktophivegpshivegpsou_thread.h(93): error C2011: 'openutils::Mutex' : 'class' type redefinition
1> c:users*desktophivegpshivegpsou_thread.h(93) : see declaration of 'openutils::Mutex'
1>c:users*desktophivegpshivegpsou_thread.h(113): error C2011: 'openutils::ThreadException' : 'class' type redefinition
1> c:users*desktophivegpshivegpsou_thread.h(113) : see declaration of 'openutils::ThreadException'
1>c:users*desktophivegpshivegpsHiveGPS.h(29): error C2504: 'openutils::Thread' : base class undefined
1>c:users*desktophivegpshivegpsHiveGPS.h(53): error C2079: 'HiveGPS::readWriteMutex' uses undefined class 'openutils::Mutex'
1>HiveGPS_wrap.cpp(3086): error C2027: use of undefined type 'openutils::Thread'
1> c:users*desktophivegpshivegpsou_thread.h(51) : see declaration of 'openutils::Thread'
1>HiveGPS_wrap.cpp(3086): fatal error C1903: unable to recover from previous error(s); stopping compilation
1>
1>Build FAILED.
1>
1>Time Elapsed 00:00:02.10
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
All of these errors (minus the last one) are basically saying that the String class is implemented somehow, is it conflicting with Python's definition of the String class? The last error is complaining about the Thread class, could that be the same problem?
All of that said: Can somebody tell me what I'm doing wrong, or better yet, point me to a tutorial of how to do this for VS2010 (the SWIG site is for 2008).
And if that can't be done, can I link the .py file I have generated to the .dll file somehow?
Sorry for the long explanation but I'm kinda lost on this one so I decided to explain everything.
Ok, I'm using swig and VS2010 with no problems...
In your case, it looks more like you have problems with linking. Beyond the check of libraries, dont forget to check 32-64 bit libraries you are linking. Try to link all as x86 target as fail-safe. And don't use AnyCpu.
How to use SWIG under VS2010.
lets define you want to obtain mylib.py, so you created some SWIG interface files with mylib.i as "main" file. I assume that you already have a solution with project with your C++ classes there.
(1) First create C++ project for SWIG interface. Use Visual C++->Class library project which should create a C++ DLL stub. I put all .i files there. And set visual studio to highlight .i as .h - it is handy.
(1.1) Add mylib_wrap.cxx file to the project (create empty file while swig hasn't generated one yet)
(2)
a) Press right button over the mylib.i, choose properties.
b) set ItemType as "Custom build tool".
In custom build step window:
c) Command line field should be something like:
echo In order to function correctly, please ensure the following environment variables are
correctly set:
echo PYTHON_INCLUDE: %PYTHON_INCLUDE%
echo PYTHON_LIB: %PYTHON_LIB%
echo on
C:swigswig.exe -c++ -python %(FullPath)
change C:swigswig.exe to your path to SWIG
d) In Outputs field:
$(InputName)_wrap.cxx
(3) Go to this project properties:
a) C++ tab -> Additional Include Directories
add $(PYTHON_INCLUDE); ...
c) Linker -> Output File
Path-You-Needed\_mylib.pyd
d) Linker -> Enable Incremental Linking
set as No (/INCREMENTAL:NO)
e) Linker -> Input -> Additional Dependencies
add $(PYTHON_LIB);...
f) C/C++ -> Precompiled Headers: Switch off precompiled headers, set **Not Using Precompiled Headers* and remove stdafx files after
g) General tab. Just check that these are set:
Configuration type = Dynamic Library (.dll)
Character set = Use Unicode Character Set
Common Language Runtime Support = No Common Language Runtime Support
It compiles.
P.S. And dont forget to set %PYTHON_INCLUDE% and %PYTHON_LIB% variables in your system too.
這篇關于如何在 VS2010 中 SWIG?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!