Windows 下GCC编译C程序调用Golang静态库和C动态库

hotkit · · 2828 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

 

1. 编译golang 静态库

package main

import (
    "C"
    "fmt"
)

//export Foo
func Foo(a, b int) int {
    return a + b
}

//export Bar
func Bar() {
    fmt.Println("Hello, I'm LiLei.")
}

func main() {

}

使用命令编译得到静态库和头文件

go build -o main.a -buildmode=c-archive main.go

2. 编写C的动态库

demo.h

int foo();
int bar();

demo.c

#include "demo.h"
#include <stdio.h>

int foo(){
    int a[3] = {1,2,3};
    int s = 0;
    int len = sizeof(a)/sizeof(a[0]);
    printf("len=%d\n", len);
    for(int i=0; i<len;i++){
            s+=a[i];
    }    
    printf("calc s=%d\n", s);
    return s;
}

int bar(){
        printf("hello, I am Lilei");
        return 32;
}

gcc -shared -fpic -o demo.so demo.c

会生成demo.so动态库文件

 

3. C 入口程序编译

test.c

#include "demo.h"
#include "main.h"
#include <stdio.h>

int main(){
    foo();
    bar();
    Bar();
    GoInt32 a=3;
    GoInt32 b=4;
    GoInt s = Foo(a,b);
    printf("s=%d\n", s);
    return 0;
}

将GOlang 静态库文件和头文件复制到C文件夹下

执行GCC 命令

>gcc -v test.c -o test1 main.a demo.so -lWinMM -lntdll -lWS2_32

运行test1


有疑问加站长微信联系(非本文作者)

本文来自:开源中国博客

感谢作者:hotkit

查看原文:Windows 下GCC编译C程序调用Golang静态库和C动态库

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

2828 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传