是否可以为 AMD 重新编译在 Mac M1 上开发的应用程序?

发布于 2025-01-10 08:20:02 字数 290 浏览 0 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

九公里浅绿 2025-01-17 08:20:02

以下命令可以解决这个问题(需要选项 CGO_ENABLED=1 来重新编译 Webview 的依赖项):

mkdir -p ${APP}.app/Contents/MacOS
GOOS=darwin GOARCH=amd64 CGO_ENABLED=1 go build -o ${APP}.app/Contents/MacOS/${APP}

The following command does the trick (the option CGO_ENABLED=1 is needed to recompile the dependencies upon Webview):

mkdir -p ${APP}.app/Contents/MacOS
GOOS=darwin GOARCH=amd64 CGO_ENABLED=1 go build -o ${APP}.app/Contents/MacOS/${APP}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文