0

我正在尝试在 smartos 上使用 zlib 安装 ruby​​ 1.8.6,ruby 编译正常,但是当我运行位于 ext/zlib 文件夹中的 ruby​​ extraconf.rb 时,控制台显示:

[admin@7dabb5d6-09d4-42b3-bb40-36a7d0a0fabe ~/src/ruby-1.8.6/ext/zlib]$ ruby extconf.rb
checking for deflateReset() in -lz... no
checking for deflateReset() in -llibz... no
checking for deflateReset() in -lzlib... no
checking for deflateReset() in -lzdll... no

[admin@7dabb5d6-09d4-42b3-bb40-36a7d0a0fabe ~/src/ruby-1.8.6/ext/zlib]$ make
make: Nothing to be done for `all'.
[admin@7dabb5d6-09d4-42b3-bb40-36a7d0a0fabe ~/src/ruby-1.8.6/ext/zlib]$

如何在 smartos 上编译 zlib?

谢谢。

4

1 回答 1

2

好的,我解决了我的运行问题:

ruby extconf.rb  --with-zlib-include=/usr/local/include/ --with-zlib-lib=/usr/local/lib

谢谢

于 2012-09-24T17:33:49.113 回答