centos6使用 swig3.0.6 編譯c,golang 1.4.2調用

來源:互聯網
上載者:User

標籤:golang   swig   

1,關於swig

SWIG是個協助使用C或者C++編寫的軟體能與其它各種進階程式設計語言進行嵌入聯結的開發工具。SWIG能應用於各種不同類型的語言套件括常用指令碼編譯語言例如Perl, PHP, Python, Tcl, Ruby and PHP。
最新的版本已經開始支援golang了。

2,環境搭建

參考文檔:
http://www.swig.org/Doc3.0/Go.html
首先安裝swig
http://www.swig.org/download.html

tar -zxvf swig-3.0.6.tar.gzcd swig-3.0.6./configuremakemake install

然後安裝golang

yum install golang#直接使用yum安裝最新的1.4版本
3,編譯

在/usr/lib/golang/src/example目錄下面建立兩個檔案example.i和example.c兩個檔案。
example.i

 /* example.i */ %module example %{ /* Put header files here or function declarations like below */ extern double My_variable; extern int fact(int n); extern int my_mod(int x, int y); extern char *get_time(); %} extern double My_variable; extern int fact(int n); extern int my_mod(int x, int y); extern char *get_time();

example.c

/* File : example.c */ #include <time.h> double My_variable = 3.0; int fact(int n) {     if (n <= 1) return 1;     else return n*fact(n-1); } int my_mod(int x, int y) {     return (x%y); } char *get_time() {     time_t ltime;     time(&ltime);     return ctime(&ltime); }

最重要的兩步:

swig -go -cgo -intgosize 64 example.i#-intgosize 參數必須增加否則報錯。go install

在另外的一個地方寫main函數調用:(不能在example包下)
example_main.go

package mainimport ("fmt""example")func main(){        fmt.Println(example.Fact(5))        fmt.Println(example.My_mod(10,30))        fmt.Println(example.Get_time())}

直接運行:

go run example_main.go 12010Mon Aug  3 08:27:39 2015

運行成功。

4,總結

本文的原文串連是: http://blog.csdn.net/freewebsys/article/details/47261873 未經博主允許不得轉載。

最新的swig 非常友好的支援了golang。只需要兩個命令就能完成整合。
再也不用複雜的編譯串連了。

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

centos6使用 swig3.0.6 編譯c,golang 1.4.2調用

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.