2007年1月28日星期日

在ubuntu下编译源码

在ubuntu下 编辑源码 需要首先 安装编译环境
1安装c/c++

sudo apt-get install gcc


2安装相关构建工具

apt-get install build-essential

现在我们开始以安装ruby为例子:#安装 ruby
wget ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.5p12.tar.gz

tar xzvf ruby-1.8.5.tar.gz
cd ruby-1.8.5
./configure --prefix=/usr/local/ruby
make
sudo make install
cd ..

没有评论: