Xcode 可以制作 .exe 文件吗?

发布于 2024-11-03 18:58:26 字数 327 浏览 3 评论 0原文

我需要在 Xcode 中构建一个小程序,用于在 PC 上编辑 safari 文件。 该文件是“...\Apple Computer\Safari\Extensions”文件夹中的“Extensions.plist”。

我在 PC 上,并且由于“Extensions.plist”位于 Xcode 中, 我需要使用 Xcode 在 Mac 上编写代码并从中生成 .exe 文件。 然后,我想从 NSIS 脚本调用此 .exe 文件来对 Extensions.plist 文件进行所需的更改。

我的问题是, 是否可以从 mac 上的 Xcode 输出可在 PC 上运行的 .exe 文件?

谢谢。

I need to build a small program in Xcode that will edit a safari file on a PC.
The file is 'Extensions.plist' in '...\Apple Computer\Safari\Extensions' folder.

Im on a PC, and since 'Extensions.plist' is in Xcode,
I need to write the code on a Mac with Xcode and generate a .exe file from it.
Then from a NSIS script, I want to call this .exe file to do the changes i need to the Extensions.plist file.

My question is,
Is it possible to output a .exe file from Xcode on mac that will run on a PC ?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

栖竹 2024-11-10 18:58:26

我在 PC 上,并且由于“Extensions.plist”位于 Xcode 中,因此我需要使用 Xcode 在 Mac 上编写代码

不,为什么? “'Extensions.plist' 在 Xcode 中”是什么意思? plist 文件只是一个 XML 文件。 Xcode 是一个 IDE。这里的联系在哪里?

回答你的问题:Xcode 通常不允许生成 exe 文件。但是,您可以使用 Mono C# 编译器在 Mac 上生成 .NET exe 文件。理论上,您还可以通过为 C# 项目配置自己的项目类型(“外部构建系统”)从 Xcode 中调用此编译器。但就您的情况而言,这样做没有任何优势。

Im on a PC, and since 'Extensions.plist' is in Xcode, I need to write the code on a Mac with Xcode

No, why? What do you mean by “'Extensions.plist' is in Xcode”? The plist file is simply an XML file. Xcode is an IDE. Where is the connection here?

To answer your question: Xcode doesn’t normally allow generating exe files. However, you can generate .NET exe files on a mac by using the Mono C# compiler. You can theoretically also call this compiler from within Xcode by configuring an own project type for C# projects (“external build system”). But there is no advantage in doing this in your case.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文