我正在尝试使用swig为静态库(* .a)创建一个包装器,以便与Golang一起使用。
我正在使用mylib.swigcxx
文件触发Golang,使用以下选项调用swig:
swig -go -cgo -intgosize 64 -module mylib \
-o $WORK/mylib/_obj/mylib_wrap.cxx \
-outdir $WORK/mylib/_obj/ \
-I/mylib/lib \
-c++ mylib.swigcxx
mylib.swigcxx看起来像:
%module mylib
%{
// (snip)
#include "basic/internal/config.h"
#include "basic/internal/config_autogen.h"
// (snip)
%}
%include <typemaps.i>
%include "std_string.i"
%include "std_vector.i"
// This will create 2 wrapped types in Go called
// "StringVector" and "ByteVector" for their respective
// types.
namespace std {
%template(StringVector) vector<string>;
%template(ByteVector) vector<char>;
}
// ...
%include "basic/internal/config.h"
%include "basic/internal/config_autogen.h"
// ...
我试图包装的大型库有一个头文件,其中包含以下代码:
70 // C++11 standard
71
72 #if __cplusplus < 201103
73
74 #if defined(_MSC_VER)
75 #if _MSC_VER < 1700
76 #error "Compiling OGDF requires Visual C++ 11 (Visual Studio 2012) or higher!"
77 #endif
78
79 #elif defined(__GNUC__)
80 #ifndef __GXX_EXPERIMENTAL_CXX0X__
81 #error "No C++11 support activated for g++ (compile with -std=c++0x or -std=c++11)!"
82 #endif
83
84 #else
85 #error "Compiling OGDF requires a C++11 compliant compiler!"
86 #endif
87
88 #endif
89
如您所见,正在检查__cplusplus
是否设置正确,是否显示错误。
我在swig执行期间遇到的错误是:
/mylib/lib -c++ mylib.swigcxx
/mylib/lib/basic/internal/config.h:85: Error: CPP #error ""Compiling OGDF requires a C++11 compliant compiler!"". Use the -cpperraswarn option to continue swig processing.
/mylib/lib/basic/internal/config.h:254: Error: CPP #error ""OGDF is compiled without LP solver. Check your build configuration."". Use the -cpperraswarn option to continue swig processing.
/mylib/lib/basic/internal/config.h:299: Error: CPP #error ""OGDF is compiled without memory manager. Check your build configuration."". Use the -cpperraswarn option to continue swig processing.
正如您所看到的,__cplusplus < 201103
和else
条款第85行都失败了。
根据the SWIG 3.0 docs, this should be set with the -c++
flag:
__cplusplus Defined when -c++ option used
任何帮助将不胜感激。
答案 0 :(得分:0)
我怀疑__cplusplus
已定义,但其值小于201103。
如果SWIG实际支持您的库需要的C ++ 11功能,则在.i文件中添加以下内容应解决此问题。
#undef __cplusplus
#define __cplusplus 201103