Xcode 可以制作 .exe 文件吗?
我需要在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,为什么? “'Extensions.plist' 在 Xcode 中”是什么意思? plist 文件只是一个 XML 文件。 Xcode 是一个 IDE。这里的联系在哪里?
回答你的问题:Xcode 通常不允许生成 exe 文件。但是,您可以使用 Mono C# 编译器在 Mac 上生成 .NET exe 文件。理论上,您还可以通过为 C# 项目配置自己的项目类型(“外部构建系统”)从 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.