0

我正在尝试使用 CGO 将 C 文件与 Golang 包捆绑在一起。遵循此处的说明:

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

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

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

我收到此错误:

# 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

这是结构:

在此处输入图像描述

main.go看起来像:

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))
}

我运行 test.sh 来构建它:

#!/usr/bin/env bash

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

cd "$dir"

export CGOFILES=main
go install main

但是当我运行 bash 脚本时,我得到了那个错误。

4

2 回答 2

2

我按照以下说明进行操作:

命令 cgo

如果“C”的导入紧跟在注释之前,则该注释称为前导,在编译包的 C 部分时用作标头。例如:

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

或者

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

例如,

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\"\n", (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\n", len(gData), gData)
    C.printData(cData)
}

输出:

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

你的代码组织对我来说毫无意义。

你应该有 package greeter,它C通过cgo. 例如,

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

带有骨架文件

greeter.go

package greeter

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

greeter.c

#include "greeter.h"

greeter.h

/* C header file */

要安装greeter软件包,只需使用go install.

不要使用相对路径。不要使用 bash 脚本。

于 2019-01-05T03:28:31.990 回答
0

感谢@peterSO,这是有效的:

package main

// #cgo CFLAGS: -g -Wall
// #include <stdlib.h>
// #include "../genericc/greeter.h"
// #include "../genericc/greeter.c"    // ! no whitespace after this line
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))
}
于 2019-01-05T03:35:34.357 回答