M
Martin Pirker
Hi...
venturing into rubygems land I tried...
# gem install amatch
Attempting local installation of 'amatch'
Local gem file not found: amatch*.gem
Attempting remote installation of 'amatch'
Building native extensions. This could take a while...
ruby extconf.rb install amatch
creating Makefile
make
make: Nothing to be done for 'all'.
make install
install -c -p -m 0755 amatch.so /usr/lib/ruby/gems/1.8/gems/amatch-0.1.4/lib
Successfully installed amatch-0.1.4
Installing RDoc documentation for amatch-0.1.4...
seems fine so far, but...
# which agrep.rb
/usr/bin/agrep.rb
# agrep.rb test test.txt
/usr/lib/ruby/gems/1.8/gems/amatch-0.1.4/bin/agrep.rb:47: uninitialized
constant Amatch (NameError)
from /usr/bin/agrep.rb:18:in 'load'
from /usr/bin/agrep.rb:18
digging further...
lib # ldd amatch.so
linux-gate.so.1 => (0xffffe000)
libruby.so.1.9 => not found
libpthread.so.0 => /lib/libpthread.so.0 (0xb7f9e000)
libdl.so.2 => /lib/libdl.so.2 (0xb7f9a000)
libcrypt.so.1 => /lib/libcrypt.so.1 (0xb7f6c000)
libm.so.6 => /lib/libm.so.6 (0xb7f49000)
libc.so.6 => /lib/libc.so.6 (0xb7e32000)
/lib/ld-linux.so.2 (0x80000000)
but I'm using
# ruby -v
ruby 1.8.2 (2004-12-25) [i686-linux] (from Gentoo)
# gem --version
0.8.10
any idea what goes wrong here?
Thanks!
Martin
venturing into rubygems land I tried...
# gem install amatch
Attempting local installation of 'amatch'
Local gem file not found: amatch*.gem
Attempting remote installation of 'amatch'
Building native extensions. This could take a while...
ruby extconf.rb install amatch
creating Makefile
make
make: Nothing to be done for 'all'.
make install
install -c -p -m 0755 amatch.so /usr/lib/ruby/gems/1.8/gems/amatch-0.1.4/lib
Successfully installed amatch-0.1.4
Installing RDoc documentation for amatch-0.1.4...
seems fine so far, but...
# which agrep.rb
/usr/bin/agrep.rb
# agrep.rb test test.txt
/usr/lib/ruby/gems/1.8/gems/amatch-0.1.4/bin/agrep.rb:47: uninitialized
constant Amatch (NameError)
from /usr/bin/agrep.rb:18:in 'load'
from /usr/bin/agrep.rb:18
digging further...
lib # ldd amatch.so
linux-gate.so.1 => (0xffffe000)
libruby.so.1.9 => not found
libpthread.so.0 => /lib/libpthread.so.0 (0xb7f9e000)
libdl.so.2 => /lib/libdl.so.2 (0xb7f9a000)
libcrypt.so.1 => /lib/libcrypt.so.1 (0xb7f6c000)
libm.so.6 => /lib/libm.so.6 (0xb7f49000)
libc.so.6 => /lib/libc.so.6 (0xb7e32000)
/lib/ld-linux.so.2 (0x80000000)
but I'm using
# ruby -v
ruby 1.8.2 (2004-12-25) [i686-linux] (from Gentoo)
# gem --version
0.8.10
any idea what goes wrong here?
Thanks!
Martin