C 编程和 Xcode
我目前正在参加 C 系统编程课程,我想使用 Xcode(而不是 vi)。打开 Xcode 时会创建什么类型的项目?
I am currently enrolled in a C systems programming course, I want to use Xcode (instead of vi). What type of project do I create when I open Xcode?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可能需要命令行实用程序 > 标准工具。这将为您提供在所有其他操作系统上获得的普通 C 环境。
You probably want Command Line Utility > Standard Tool. This will give you just the ordinary C environment you get on every other OS.
Mac OS X >应用>>命令行工具。但我怀疑您最好使用
vi
、emacs
或TextMate
之类的东西。我猜大多数 C 系统编程课程都会使用 Makefile。Mac OS X > Application > Command Line Tool. But I suspect you'd be be better off using
vi
,emacs
, or something likeTextMate
. I'd guess that most C systems programming courses are going to use Makefiles.打开 xcode 6,
创建新项目(文件菜单,新建,然后项目...
然后您将看到一个屏幕“为新项目选择模板”
选择命令行工具。
就是这样。您可以谷歌创建命令行工具在 Xcode 中,我该如何...如果您有任何进一步的疑问。
Open xcode 6,
Create new project (file menu, new, then project...
Then you'll see a screen "choose a template for your new project"
Choose command line tool.
That's it. You could google creating a command line tool in Xcode, how do I... if you have any further queries.
如果您只想编写 C 代码,那么您需要一个命令行工具应用程序。
If all you want is to write C code, you want a command line tool application.