是否可以为 AMD 重新编译在 Mac M1 上开发的应用程序?
我使用 Go 和 Webview(Go 的 Webview 绑定)开发了一个应用程序。
https://github.com/webview/webview
当我尝试重新编译它时(交叉编译它)对于 AMD 架构(使用相关的 Go 编译器开关),它不起作用,因为 Webview 绑定实际上是一个依赖于架构的库。
有没有办法解决这个问题(使用旧的Mac或模拟器或特殊终端)?
I have developed an app using Go and Webview (Webview bindings for Go).
https://github.com/webview/webview
When I attempt to recompile it (cross-compile it) for an AMD architecture (using the relevant Go compiler switches), it doesn’t work because the Webview bindings are in fact a library which is architecture-dependant.
Is there a way around this (use an old Mac or an emulator or a special terminal) ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下命令可以解决这个问题(需要选项
CGO_ENABLED=1
来重新编译 Webview 的依赖项):The following command does the trick (the option
CGO_ENABLED=1
is needed to recompile the dependencies upon Webview):