将 Nim 代码静态链接到 Go
Statically linking Nim code to Go
我正在尝试 Linux 将 Nim 中创建的一些代码静态 link 到 Go 应用程序中。我遵循了 Nim Backend Integration 文档和一些关于 linking C in Go 的文章,但还没有让它工作。
这是我目前所处的位置...
Nim 代码target.nim
:
proc testnim* {.exportc.} =
echo "In Nim!"
我编译它:
nim c --app:staticLib --noMain --header target.nim
转到代码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
我正在尝试 Linux 将 Nim 中创建的一些代码静态 link 到 Go 应用程序中。我遵循了 Nim Backend Integration 文档和一些关于 linking C in Go 的文章,但还没有让它工作。
这是我目前所处的位置...
Nim 代码target.nim
:
proc testnim* {.exportc.} =
echo "In Nim!"
我编译它:
nim c --app:staticLib --noMain --header target.nim
转到代码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