dongzhang6544 2019-01-05 03:22
浏览 417
已采纳

在Golang包中编译CGO文件

I am trying to use CGO to bundle C files with a Golang package. Following instructions here:

https://karthikkaranth.me/blog/calling-c-code-from-go/

http://akrennmair.github.io/golang-cgo-slides/#1

https://golang.org/cmd/cgo/

I am getting this error:

# main 
src/main/main.go:16:8: could not determine kind of name for C.free 
src/main/main.go:23:10: could not determine kind of name for C.greet

here is the structure:

enter image description here

main.go just looks like:

package main

// #cgo CFLAGS: -g -Wall
// #include <stdlib.h>
// #include "genericc/greeter.h"

import "C"

import (
    "fmt"
    "unsafe"
)

func main() {
    name := C.CString("Gopher")
    defer C.free(unsafe.Pointer(name))

    year := C.int(2018)

    ptr := C.malloc(C.sizeof_char * 1024)
    defer C.free(unsafe.Pointer(ptr))

    size := C.greet(name, year, (*C.char)(ptr))

    b := C.GoBytes(ptr, size)
    fmt.Println(string(b))
}

and I run test.sh to build it:

#!/usr/bin/env bash

dir="$(cd `dirname "$0"` && pwd)"
export GOPATH="$dir"

cd "$dir"

export CGOFILES=main
go install main

but when I run the bash script I get that error.

  • 写回答

2条回答 默认 最新

  • douzhuo2002 2019-01-05 03:28
    关注

    I follow the instructions:

    Command cgo

    If the import of "C" is immediately preceded by a comment, that comment, called the preamble, is used as a header when compiling the C parts of the package. For example:

    // #include <stdio.h>
    // #include <errno.h>
    import "C"
    

    or

    /*
    #include <stdio.h>
    #include <errno.h>
    */
    import "C"
    

    For example,

    gocbuf.go:

    package main
    
    import (
        "fmt"
        "unsafe"
    )
    
    /*
    #include <stdlib.h>
    #include <stdio.h>
    #include <string.h>
    
    int printData(unsigned char *data) {
        return printf("cData: %lu \"%s\"
    ", (long unsigned int)strlen(data), data);
    }
    */
    import "C"
    
    func main() {
        // Allocate C data buffer.
        width, height := 8, 2
        lenData := width * height
        // add string terminating null byte
        cData := (*C.uchar)(C.calloc(C.size_t(lenData+1), C.sizeof_uchar))
    
        // When no longer in use, free C allocations.
        defer C.free(unsafe.Pointer(cData))
    
        // Go slice reference to C data buffer,
        // minus string terminating null byte
        gData := (*[1 << 30]byte)(unsafe.Pointer(cData))[:lenData:lenData]
    
        // Write and read cData via gData.
        for i := range gData {
            gData[i] = '.'
        }
        copy(gData[0:], "Data")
        gData[len(gData)-1] = 'X'
        fmt.Printf("gData: %d %q
    ", len(gData), gData)
        C.printData(cData)
    }
    

    Output:

    $ go run gocbuf.go
    gData: 16 "Data...........X"
    cData: 16 "Data...........X"
    $ 
    

    Your code organization makes no sense to me.

    You should have package greeter, which wraps C functions via cgo. For example,

    src
    └── greeter
        ├── greeter.c
        ├── greeter.go
        └── greeter.h
    

    with skeleton files

    greeter.go:

    package greeter
    
    /*
    #include "greeter.h"
    */
    import "C"
    

    greeter.c:

    #include "greeter.h"
    

    greeter.h

    /* C header file */
    

    To install the greeter package, simply use go install.

    Don't use relative paths. Don't use bash scripts.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 求chat4.0解答一道线性规划题,用lingo编程运行,第一问要求写出数学模型和lingo语言编程模型,第二问第三问解答就行,我的ddl要到了谁来求了
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥15 maple软件,用solve求反函数出现rootof,怎么办?
  • ¥65 汇编语言除法溢出问题
  • ¥15 Visual Studio问题
  • ¥20 求一个html代码,有偿
  • ¥100 关于使用MATLAB中copularnd函数的问题
  • ¥20 在虚拟机的pycharm上
  • ¥15 jupyterthemes 设置完毕后没有效果