doupinyan0186 2019-07-12 08:14
浏览 144
已采纳

在C程序中使用golang函数

I have created a golang program to pass some values to c program. I used this example to do so

My simple golang code :

package main

import "C"

func Add() int {
        var a = 23
        return a 
 }
func main() {}

Then I compiled this using go build -o test.so -buildmode=c-shared test.go

My C code :

#include "test.h"

int *http_200 = Add(); 

When I try to compile it using gcc -o test test.c ./test.so

I get

int *http_200 = Add(); ^ http_server.c:75:17: error: initializer element is not constant

Why I am getting this error? How to initialize that variable properly in my C code.

PS : edited after first comment.

  • 写回答

1条回答 默认 最新

  • dpl57372 2019-07-12 09:24
    关注

    There are a couple of issues here. First is the incompatibility of the types. Go will return a GoInt. Second issues is that the Add() function has to be exported to get the desired header file. If you don't want to change your Go code, then in C you have to use the GoInt which is a long long.

    A complete example is:

    test.go

    package main
    
    import "C"
    
    //export Add
    func Add() C.int {
        var a = 23
        return C.int(a)
    }
    
    func main() {}
    

    test.c

    #include "test.h"
    #include <stdio.h>
    
    int main() {
        int number = Add();
        printf("%d
    ", number);
    }
    

    Then compile and run:

    go build -o test.so -buildmode=c-shared test.go
    gcc -o test test.c ./test.so &&
    ./test
    

    23


    A second example using the GoInt: test.go

    package main
    
    import "C"
    
    //export Add
    func Add() int { // returns a GoInt (typedef long long GoInt)
        var a = 23
        return a
    }
    
    func main() {}
    

    test.c

    #include "test.h"
    #include <stdio.h>
    
    int main() {
        long long number = Add();
        printf("%lld
    ", number);
    }
    

    Then compile and run:

    go build -o test.so -buildmode=c-shared test.go
    gcc -o test test.c ./test.so &&
    ./test
    

    23

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
  • ¥50 STM32单片机传感器读取错误
  • ¥15 (关键词-阻抗匹配,HFSS,RFID标签天线)
  • ¥15 机器人轨迹规划相关问题
  • ¥15 word样式右侧翻页键消失