gpt4 book ai didi

go - 在 Golang 包中编译 CGO 文件

转载 作者:IT王子 更新时间:2023-10-29 02:35:50 27 4
gpt4 key购买 nike

我正在尝试使用 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

结构如下:

enter image description here

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 脚本时,我得到了那个错误。

最佳答案

我按照说明操作:

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"

例如,

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"
$

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

你应该有包 greeter,它通过 cgo 包装了 C 函数。例如,

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 脚本。

关于go - 在 Golang 包中编译 CGO 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54048688/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com