我是靠谱客的博主 落寞玉米,最近开发中收集的这篇文章主要介绍CentOS下安装gnustep, gorm and project center,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1. check if install gcc and gcc-objc

> yum list *gcc*

 

2. if no gcc

> yum install gcc

 

3. if no gcc-objc

> yum install gcc-objc

when you install gcc-objc, it will also install "libobject "

 

 

http://wwwmain.gnustep.org/resources/downloads.php provide s gnustep all downloads.

 

4. download "GNUstep Startup " and install it

> wget http://ftpmain.gnustep.org/pub/gnustep/core/gnustep-startup-0.25.0.tar.gz

> tar -zxvf gnustep-startup-0.25.0.tar.gz

> cd gnustep-startup-0.25.0

> less README

> less INSTALL

 

# README 中会提示你通过 run "./InstallGNUstep" 来安装

# 执行 "InstallGNUstep" script 的过程中,会首先 check 你的 linux 系统是否具备了所有 GNUstep 所依赖的 module/software ,然后输出一个 check report tell you info about error and warning 关于你缺少哪些 module ,以及你在安装中可能出现的问题。如果有 error 出现,那么安装就不会继续。你必须先 fix 这些 error 才行。

# 通常的 error 都是缺少 module ,那么我们可以根据 error 提示,通过 yum 来查询和安装相关 module 要注意的是,有些 module 只安装 production version 并不足够,还需要安装 devel version 才行

# 另外, 在安装过程中,有些 error 可以从 README 中找到解决方法 。例如,我已经安装了 ”libffi” ,但 GNUstepinstall 依然提示找不到 libffi README 里有说要添加 —ffi=libffi

 

> ./InstallGNUstep

After gnustep installation, it will install gnustep Make, Base, Gui and Back.

 

5. download gorm and install it

> wget http://ftpmain.gnustep.org/pub/gnustep/dev-apps/gorm-1.2.12.tar.gz

> tar -zxvf gorm-1.2.12.tar.gz

> cd gorm-1.2.12

#set environment!! 没有下面这句,则执行 make install 会出错

> . /usr/GNUstep/System/Library/Makefiles/GNUstep.sh

> make install

 

6. download project center and install it

> wget http://ftpmain.gnustep.org/pub/gnustep/dev-apps/ProjectCenter-0.6.0.tar.gz

> tar -zxvf ProjectCenter-0.6.0.tar.gz

> cd ProjectCenter-0.6.0

> make install

 

7. run gorm

> cd gormxxx

if not set environment, execute following line command

#set environment!! 没有下面这句,则执行 make install 会出错

> . /usr/GNUstep/System/Library/Makefiles/GNUstep.sh

> ./Gorm.app/Gorm

 

8. run project center

> cd Projectcenterxxx

#set environment!! 没有下面这句,则执行 make install 会出错

> . /usr/GNUstep/System/Library/Makefiles/GNUstep.sh

> ./ProjectCenter.app/ProjectCenter

 

最后

以上就是落寞玉米为你收集整理的CentOS下安装gnustep, gorm and project center的全部内容,希望文章能够帮你解决CentOS下安装gnustep, gorm and project center所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(45)

评论列表共有 0 条评论

立即
投稿
返回
顶部