Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 SWIG 为一些 C++ 代码生成一些语言绑定。我在控制台收到此警告:
没有使用 %module 或 -module 指定模块名称
警告是不言自明的,但我应该担心吗?
是的,这是值得担心的事情。这是一个错误而不是警告,并且没有创建生成的包装文件(至少在我测试过的 SWIG 2.0.8 版本中没有)。只需添加%module modulename到 SWIG.i文件的顶部。
%module modulename
.i