golang交叉编译go-sqlite3

钱tao · · 761 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

背景

需要在mac机上编译出linux使用的应用,引用了go-sqlite3包,出现编译错误

错误详情
qiantao@qiant elfishfs-go % CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -ldflags "-linkmode external -extldflags -static" -o demo
# github.com/mattn/go-sqlite3
sqlite3-binding.c:33886:42: error: use of undeclared identifier 'pread64'
sqlite3-binding.c:33904:42: error: use of undeclared identifier 'pwrite64'
sqlite3-binding.c:34037:22: error: invalid application of 'sizeof' to an incomplete type 'struct unix_syscall []'
sqlite3-binding.c:34046:22: error: invalid application of 'sizeof' to an incomplete type 'struct unix_syscall []'
sqlite3-binding.c:34073:20: error: invalid application of 'sizeof' to an incomplete type 'struct unix_syscall []'
sqlite3-binding.c:34090:16: error: invalid application of 'sizeof' to an incomplete type 'struct unix_syscall []'
sqlite3-binding.c:14567:38: note: expanded from macro 'ArraySize'
sqlite3-binding.c:34094:14: error: invalid application of 'sizeof' to an incomplete type 'struct unix_syscall []'
sqlite3-binding.c:14567:38: note: expanded from macro 'ArraySize'
sqlite3-binding.c:36748:11: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
sqlite3-binding.c:33890:49: note: expanded from macro 'osPread64'
sqlite3-binding.c:36860:17: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
sqlite3-binding.c:33908:57: note: expanded from macro 'osPwrite64'

问题

需要交叉工具编译

解决

安装交叉编译工具

brew install FiloSottile/musl-cross/musl-cross

重新编译

CC=x86_64-linux-musl-gcc CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -ldflags "-linkmode external -extldflags -static" -o demo

参考资源

【译】MacOS下的交叉编译


有疑问加站长微信联系(非本文作者)

本文来自:简书

感谢作者:钱tao

查看原文:golang交叉编译go-sqlite3

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

761 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传