My company's System-admin installed Ruby and Gems (using Sun Coolstack
package) and I have sudo access to ruby, gem etc. Now I need to get my
app to talk to oracle db (through network).
From what I understand, it requires three steps:
Step 1: Install oracle instant client ( I installed it in my ~/oracle/
instantclient_11_1)
Step2: Install OCI8 libraries (this is where I am stuck). Here is the
error message:
***********ERROR MESSAGE***************
bash-3.00$ sudo gem install ruby-oci8
Building native extensions. This could take a while...
ERROR: Error installing ruby-oci8:
ERROR: Failed to build gem native extension.
/opt/coolstack/bin/ruby extconf.rb
checking for load library path...
LD_LIBRARY_PATH_32 is not set.
LD_LIBRARY_PATH is not set.
checking for cc... *** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of
necessary libraries and/or headers. Check the mkmf.log file for more
details. You may need configuration options.
Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/opt/coolstack/bin/ruby
--with-instant-client
--without-instant-client
./oraconf.rb:557:in `check_cc': RuntimeError (RuntimeError)
from ./oraconf.rb:544:in `init'
from ./oraconf.rb:674:in `initialize'
from ./oraconf.rb:345:in `new'
from ./oraconf.rb:345:in `get'
from extconf.rb:17
ng
My company's System-admin installed Ruby and Gems (using Sun Coolstack
package) and I have sudo access to ruby, gem etc. Now I need to get my
app to talk to oracle db (through network).
From what I understand, it requires three steps:
Step 1: Install oracle instant client ( I installed it in my ~/oracle/
instantclient_11_1)
Step2: Install OCI8 libraries (this is where I am stuck). Here is the
error message:
***********ERROR MESSAGE***************
bash-3.00$ sudo gem install ruby-oci8
Building native extensions. This could take a while...
checking for cc... *** extconf.rb failed ***
This is because you're missing Ruby dev libraries.
No, I can't become su - root. If it's something very critical, I can
request SA (root) for his time. But I don't know when he'd be free.
So, my questions:
1. Do you think it's a compiler (cc) issue ? It does say "C compiler
doesn't work correctly". I already have gcc in path. I also created a
symbolic link cc -> gcc
2. It does find Oracle Instant Client in the directory
bash-3.00$ echo $LD_LIBRARY_PATH
/usr/local/ssl/lib/:/usr/local/lib/:/export/home/roradmin1/oracle/
instantclient_11_1
bash-3.00$
Just to let everyone know. This problem has been FIXED. Here is what I
did:
1. install Sun Studio 12.1
2. edited rbconfig.rb and included path of sun's "cc" compiler that
came with Sun Studio.
and then it started working fine.