为了账号安全,请及时绑定邮箱和手机立即绑定

golang:cgo extern 不起作用

golang:cgo extern 不起作用

Go
慕妹3146593 2021-06-29 13:55:25
我正在尝试使用以下示例为 golang 运行 cgo(在go-wiki -> Global Functions 中给出):foo.go 文件:package gocallbackimport "fmt"/*#include <stdio.h>extern void ACFunction();*/import "C"//export AGoFunctionfunc AGoFunction() {        fmt.Println("AGoFunction()")}func Example() {        C.ACFunction()}foo.c 文件:#include "_cgo_export.h"void ACFunction() {    printf("ACFunction()\n");    AGoFunction();}运行此示例时,我收到以下错误:# command-line-arguments/tmp/go-build770916112/command-line-arguments/_obj/foo.cgo2.o: In function    `_cgo_3234419c4c2a_Cfunc_ACFunction':./foo.go:36: undefined reference to `ACFunction'collect2: ld returned 1 exit status我无法追踪到这一点。为什么ACFunction是undefined?或者我错过了什么?go version: 去版本 go1.1.2 linux/386
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 309 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信