使用GCC在linux机器上生成Xcode

时间:2020-12-07 12:28:53

i have gcc installed on my linux machine and i have my xcode project on my linux machine. now is there anyway i can generate a xcodebuild using gcc on linux machine?

我在我的linux机器上安装了gcc,我的linux机器上有我的xcode项目。现在有没有我可以在linux机器上使用gcc生成xcodebuild?

1 个解决方案

#1


2  

Very unlikely - the project file is designed for the sole use of Xcode and its command line friends. You are better off creating a Makefile for use under Non-Mac systems; this will be much quicker that trying to determine how the Xcode project file is structured and how to use the information contained within it.

非常不可能 - 项目文件仅供Xcode及其命令行朋友使用。你最好创建一个Makefile,以便在非Mac系统下使用;尝试确定Xcode项目文件的结构以及如何使用其中包含的信息会更快。

#1


2  

Very unlikely - the project file is designed for the sole use of Xcode and its command line friends. You are better off creating a Makefile for use under Non-Mac systems; this will be much quicker that trying to determine how the Xcode project file is structured and how to use the information contained within it.

非常不可能 - 项目文件仅供Xcode及其命令行朋友使用。你最好创建一个Makefile,以便在非Mac系统下使用;尝试确定Xcode项目文件的结构以及如何使用其中包含的信息会更快。