SWIG 跨平台
我的应用程序使用 SWIG 在 Windows 上的 c++ 和 python 之间进行通信。
假设如果我的接口是“example.h”,
swig 正在生成 example.py、example_wrap.cxx,
/* File : example.i */
%module example
%{
#include "example.h"
%}
%include "std_string.i"
%include "std_wstring.i"
%include "example.h"
我正在将我的应用程序移植到 MAC。我需要在mac上生成example.py、example_wrap.cxx吗?或者我可以使用已经生成的文件吗?
My application is using SWIG to communicate between c++ and python on windows.
suppose if my interface is "example.h"
swig is generating example.py, example_wrap.cxx
/* File : example.i */
%module example
%{
#include "example.h"
%}
%include "std_string.i"
%include "std_wstring.i"
%include "example.h"
I am porting my application to MAC. Do i need to generate example.py, example_wrap.cxx on mac? or can i use already generated files ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无论在哪个平台上执行,SWIG 都会生成相同的代码。
如果该代码的任何部分是操作系统/编译器/等特定的(例如,Windows 上 C# 的调用约定),则这由 C++ 或 C++ 的条件编译来处理。目标语言中的类似技术。
SWIG generates the same code regardless of the platform it is executed on.
If any parts of that code are OS/Compiler/etc.-specific (e.g. calling conventions on Windows for C#), this is handled by conditional compilation for C++ resp. similar techniques in the target language.