dongpu8935 2017-04-30 20:25
浏览 91
已采纳

交叉编译共享库

I'd like to know if it is possible (and if yes: how) to cross compile shared libraries with Go. Say I have this code:

package main

import "C"

//export DoubleIt
func DoubleIt(x int) int {
    return x * 2
}

func main() {}

in src/doubler/main.go. On Mac I can run

go build -o libdoubler.dylib -buildmode=c-shared doubler

to get a shared library called libdoubler.dylib. Similar on linux, just with the extension .so.

Now I'd like to use Linux as the main platform to build my libraries (for Mac and Windows). What are my options?

Setting GOOS to darwin and running the above on linux, I get

can't load package: package doubler: no buildable Go source files in /home/patrick/Desktop/go/src/doubler

Any ideas?

  • 写回答

2条回答 默认 最新

  • dqwd71332 2017-05-03 17:07
    关注

    The problem you face is not actually about compiling shared libraries or executables, but about using cgo and trying to cross-compile. (Still, if you want a library, not an executable, package name shouldn't be main.)

    When cross-compiling, cgo is disabled by default. If you add the environment variable CGO_ENABLED=1, then your example will work:

    CGO_ENABLED=1 GOOS=darwin go build -o libdoubler.dylib -buildmode=c-shared doubler
    

    Keep in mind that using cgo while cross-compiling will be cumbersome. You will need to make sure that C libraries for the target platform are ready on your host machine. If it is not really necessary, stay away from cgo. If you have to, then you may consider compiling on the target machine instead of dealing with the maintenance of cross-compiling with cgo.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度