SWIG 跨平台

发布于 2024-09-28 18:29:13 字数 380 浏览 3 评论 0原文

我的应用程序使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

神回复 2024-10-05 18:29:13

无论在哪个平台上执行,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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文