gpt4 book ai didi

go - 将 Nim 代码静态链接到 Go

转载 作者:IT王子 更新时间:2023-10-29 01:20:54 27 4
gpt4 key购买 nike

我正在尝试在 Linux 中将一些在 Nim 中创建的代码静态链接到 Go 应用程序中。我关注了 Nim Backend Integration在 Go 中链接 C 的文档和一些文章,但还没有让它工作。

这是我目前所处的位置......


Nim 代码 target.nim:

proc testnim* {.exportc.} =
echo "In Nim!"

我编译它:

nim c --app:staticLib --noMain --header target.nim

Go代码app.go:

package main

/*
#cgo CFLAGS: -I/my/path/to/target/nimcache
#cgo CFLAGS: -I/my/path/to/Nim/lib
#cgo LDFLAGS: /my/path/to/target/libtarget.a
#include "/my/path/to/target/nimcache/target.h"
*/
import "C"
import "fmt"

func main() {
fmt.Println("In Go!")
C.NimMain()
C.testnim()
}

我尝试构建这两个:

go build

go build --ldflags '-extldflags "-static"' app.go

这是我得到的:

# command-line-arguments/my/path/to/target/libtarget.a(stdlib_system.o): In function `nimUnloadLibrary':stdlib_system.c:(.text+0xe6f0): undefined reference to `dlclose'/my/path/to/target/libtarget.a(stdlib_system.o): In function `nimLoadLibrary':stdlib_system.c:(.text+0xe71b): undefined reference to `dlopen'/my/path/to/target/libtarget.a(stdlib_system.o): In function `nimGetProcAddr':stdlib_system.c:(.text+0xe750): undefined reference to `dlsym'collect2: error: ld returned 1 exit status

所以我遗漏了一些东西。我正在使用 Go 1.5 和 Nim 0.11.3(开发分支)。任何建议或提示将不胜感激。

最佳答案

您缺少 libdl 库。将 -ldl 添加到您的 LDFLAGS

关于go - 将 Nim 代码静态链接到 Go,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32512065/

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