我想用“go build”构建我的项目。我没有找到任何文档如何将swig与go构建过程集成。而且非常重要的是,它应该是一个C ++示例C很容易。
/* foo.i */
%module foo
%{
#include "foo.h"
%}
%include "foo.h"
#pragma once
int foo(int a, int b);
class MyClass {
int a,b,c;
public:
MyClass(int a, int b, int c): a(a),b(b),c(c) {}
int foo() {
return (a+b)*c;
}
int bar() {
return a*(b+c);
}
};
#include "foo.h"
int foo(int a, int b){
return a*b;
}
package foo
import "fmt"
func main(args []string) {
fmt.Println("Hello World!")
fmt.Println(foo.foo(12, 17))
}
arne@ad-X201t ~/g/s/g/k/swig-test> go build
# github.com/krux02/swig-test
In file included from $WORK/github.com/krux02/swig-test/_obj/foo_wrap.c:194:0:
./foo.h:5:1: Fehler: unbekannter Typname: »class«
./foo.h:5:15: Fehler: expected »=«, »,«, »;«, »asm« or »__attribute__« before »{« token
/tmp/go-build724218913/github.com/krux02/swig-test/_obj/foo_wrap.c: In Funktion »_wrap_MyClass_set«:
/tmp/go-build724218913/github.com/krux02/swig-test/_obj/foo_wrap.c:225:3: Fehler: unbekannter Typname: »class«
/tmp/go-build724218913/github.com/krux02/swig-test/_obj/foo_wrap.c:226:3: Fehler: unbekannter Typname: »class«
/tmp/go-build724218913/github.com/krux02/swig-test/_obj/foo_wrap.c:229:5: Fehler: unbekannter Typname: »class«
[...]
错误显而易见,swig尝试将所有内容构建为C库。
进行测试,只需复制:
go get github.com/krux02/swig-test
答案 0 :(得分:4)
查看bug report that added Swig support to go build
,看起来它决定了如何基于文件扩展名编译SWIG包装器:
.swig
个文件被视为C .swigcxx
文件被视为C ++ 如果您将foo.swig
重命名为foo.swigcxx
,则应使用正确的SWIG标记和编译器。
答案 1 :(得分:1)
如http://golang.org/cmd/go/所述,只有当您的构建文件以.swigcxx结尾时,-c ++选项才会传递给SWIG。
答案 2 :(得分:0)
有关使用C ++的SWIG代码示例,请参阅Go源代码中的misc / swig / callback。