在debian下安装GNUstep

#apt-get install gnustep

#apt-get install gnustep-devel

#apt-get install libgnustep-base-dev

#apt-get install gnustep-games

 

这样就安装完毕了。

 

在命令行下执行:

chmod +x /usr/share/GNUstep/Makefiles/GNUstep.sh

 

然后就是配置,在主目录下编辑.profile文件,加入以下几行:

 

export LIBRARY_PATH=/usr/lib/GNUstep/System/Library/Libraries

export OBJC_INCLUDE_PATH=/usr/include/GNUstep/Headers

source /usr/share/GNUstep/Makefiles/GNUstep.sh

 

这样配置好编译object-C的基本环境。

 

关于object-C的编译过程,使用GNUmakefile:

 

 include $(GNUSTEP_MAKEFILES)/common.make 
TOOL_NAME = WRP  // 这里是你的目标文件的名字
 WRP_HEADERS=xxx.h //头文件
 WRP_OBJC_FILES = main.m // 这里是所有源文件的名字

 include $(GNUSTEP_MAKEFILES)/tool.make 

编辑好后,运行make命令。

 

 

你可能感兴趣的:(Debian,Path,include,library)