Objective-C在windows开发环境的搭建

一、安装

 

从 http://www.gnustep.org/experience/Windows.html 下载四个文件

1、GNUstep MSYS System    
2、GNUstep Core    
3、GNUstep Devel    
4、Cairo Backend    
依次按照顺序安装在 d:/GNUStep


二、编码


用记事本编写代码,完整的代码如下:

#include <stdio.h>
int main(void)
{
printf ("Welcome to Objective-C!");
return 0;
}

保存为 d:/object-c/firest.m


三、编译执行


在开始菜单中,从GNUstep启动shell
在shell中执行


cd d:/object-c
gcc -o first first.m
./first


Welcome to Objective-C!

你可能感兴趣的:(windows,shell,System)