Windowsでswigを使用してgolang call c++ dllを使用したい。(Linux の gc コンパイラは成功しました。) しかし、いくつかの問題があります。これがサンプルです。
//sampel.h
int compute(int a, int b);
//sample.cpp
#include <iostream>
#include "sample.h"
int compute(int a, int b){
int temp = (a+b)*(a-b);
return temp;
}
//sample.i
%module sample
%inline %{
#include "sample.h"
%}
int compute(int a,int b);
ここで、このコマンドを使用してラップ ファイルを生成します。
swig -c++ -go -soname sample.dll -intgosize 64 sample.i
次に、VS で空の dll プロジェクトを作成し、sample.h とヘッダー ファイルを追加し、sample.cpp と sample_wrap.cxx をソース ファイルに追加し、sample.i をプロジェクトに追加します。
ソリューションのビルド、sample.dll の生成
以下のように cmd を使用して、sample.a を生成します。
go tool 6g sample.go
go tool 6c -I C:\Go\pkg\windows_amd64 sample_gc.c
go tool pack grc sample.a sample.6 sample_gc.6
次に、sample.a をインストールして (問題を回避するため)、test.go を実行します。
package main
import (
"fmt"
"sample"
)
func main() {
fmt.Println(sample.Compute(3, 4))
}
問題はここにあります.test.goを実行すると、エラーが発生しました:
adddynlib: unsupported binary format
問題を解決するにはどうすればよいですか (dll と test.go は同じディレクトリにあります)。ありがとう!私が見逃した追加情報が必要な場合は、お尋ねください。
アレックス