你能在Linux上运行Xcode吗?Mac OS X是基于BSD Unix的,所以有可能吗?
据我所知,有一个MonoDevelop插件有一个iPhone模拟器。
你能在Linux上运行Xcode吗?Mac OS X是基于BSD Unix的,所以有可能吗?
据我所知,有一个MonoDevelop插件有一个iPhone模拟器。
不,你听说过MonoTouch,它是用于iPhone开发的。net /mono环境。但你仍然需要一台Mac电脑和官方的iPhone SDK。模拟器是苹果官方的,它作为一个独立的IDE允许你不用Objective C编码,而是用c#编码
这是一个有趣的项目,至少可以说....
编辑:显然,你现在可以在应用商店上发行游戏了,在早期这是行不通的....
Xcode的底层工具链(gcc编译器家族,gdb调试器等)都是开源的,并且通用于Unix和Linux平台。但是IDE——编辑器、项目管理、索引、导航、构建系统、图形调试器、可视化数据建模、SCM系统、重构、项目快照等——是Mac OS X Cocoa应用程序,并且不可移植。
如果你运行VMware Player或Workstation(或者VirtualBox,我不确定它是否支持Mac OS X,但可能),然后是Mac OS X Server(客户端不能合法虚拟化)。当然,在这种情况下,你是在OS X上运行XCode,但你的主机可能是linux。
I really wanted to comment, not answer. But just to be precise, OSX is not based on BSD, it is an evolution of NeXTStep. The NeXTStep OS utilizes the Mach kernel developed by CMU. It was originally designed as a MicroKernel, but due to performance constraints, they eventually decided they needed to include the Unix portion of the API into the kernel itself and so a BSD-compatible "server" (originally intended to process requests for BSD-compatible kernel messages) was moved into the kernel, making it a Monolithic kernel. It may be BSD compatible in the programming API, but it is NOT BSD.
操作系统的其余部分涉及到objecvec(在Stepstone和GNU/GCC的Richard Stallman的安排下)和基于“显示后脚本”技术的GUI…有点像X服务器,但是带有后记命令。OS X将显示Postscript更改为显示PDF,并将一般硬件要求提高了1000倍(NeXT可以运行8-16MB,现在需要GB)。
Due to the close marriage of GCC and Objective C and NeXT, your best bet at running XCode natively under Linux would be to do a port (if you can get ahold of the source - good luck) utilizing the GNUStep libraries. Originally designed for NextStep and then OpenStep compatibility, I've heard they are now more-or-less Cocoa compatible, but I've not played with any of it in almost 2 decades. Of course that only gets you as far as ObjC, not Swift, and I don't know if Apple is going to OpenSource it.
没有人建议流浪者,所以这里是流浪者盒子为OSX
vagrant init AndrewDryga/vagrant-box-osx --box-version 0.2.1
vagrant up
# editor's notes:
# - this requires virtualbox
# - version 0.3.1 (2016) is down now, so version 0.2.1 (2015)
# - there are notes for building an image one's self at the site
你有一个MACOS虚拟机。但根据苹果的EULA,你仍然需要在MacOS硬件上运行它:但是无论在哪里,这里有一个给所有擦除MacOS并安装Ubuntu的极客们
不幸的是,您不能使用SSH x -转发选项从内部运行编辑器。
如果你真的想在linux上使用Xcode,你可以获得Virtual Box并在虚拟机上安装Hackintosh。 编辑:MacOS Movaje不支持虚拟框客户附加功能。您将需要使用VMware
https://www.vmware.com/
https://hackintosh.com/
奇怪的是没有人建议KVM。
它将提供近乎原生的性能,它是内置的Linux。 去看看吧。
你会觉得你只使用mac,然后在那里安装Xcode 你甚至可以选择在启动时直接引导到OSX GUI,而不是Linux GUI
你可以使用Darling在Linux本机运行Xcode:
Darling是一个转换层,可以让你在Linux上运行macOS软件
安装完成后,你可以通过命令行开发工具安装Xcode。
如果您计划在Linux上使用Mac虚拟机,请检查Docker-OSX。它提供了一种使用Docker预构建的Mac vm的简单方法。
要了解更多关于在非苹果硬件上运行苹果软件的合法性,请阅读这篇文章:Hackintosh、OSX-KVM或Docker-OSX合法吗?