在smartos plus上安装ruby

时间:2012-02-25 17:49:25

标签: ruby unix solaris joyent

所以我有一台smartos 64 plus机器(joyent)

我没有安装导轨,因为我有

Could not find gem 'rdoc (~> 3.4)', required by 'rails (= 3.0.9)', in any of the sources

尝试运行rails应用程序时出错(通过rails s)

所以我通过

安装了rails
sudo gem install rails

我收到了一个错误:

make: gcc: Command not found

它还说(当我尝试下载源代码并手动编译时)

checking build system type... i386-pc-solaris2.11
checking host system type... i386-pc-solaris2.11
checking target system type... i386-pc-solaris2.11
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: in `/apps/ruby-1.9.3-p125':
configure: error: no acceptable C compiler found in $PATH

顺便说一下,我也尝试过smartos打包机

pkgin in ruby19-rails-3.0.9

我有点困惑,因为SmartOS plus版本应该预先安装了大部分内容!

2 个答案:

答案 0 :(得分:3)

要允许Ruby Gems构建本机二进制包,您需要安装GCC和Make。似乎GCC默认不在机器上。

pkgin install gcc47 gmake

gem install <your gem>

答案 1 :(得分:2)

看起来您可能需要手动执行gcc。 This post有一些关于它的信息。 pkgin install gcc-compiler gcc-runtime gcc-tools-0是他们建议的命令。