Actually, what I am trying to do is access functions from the header file hello.h. It is located in the rundir along with the function definitions in hello.c. So does that mean I don't need the LIBS option in my Inline statement?
Thanks for your time...Brady Cannon -----Original Message----- From: Sean O'Rourke [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 23, 2002 5:50 PM To: bbcannon Subject: Re: fatal relocation error Where is libhello located? Is it a dynamic library (.so) or a static one (.a)? Depending on which of these you have (or want), the solution to your problem will be different. With a dynamic libhello, you need to make sure libhello.so is in your LD_LIBRARY_PATH when you run the script. With a static, you need to make sure Inline is finding libhello.a at compile time, and putting the code for hello() into the .so file it generates (try "nm $INLINE_SO_FILE | grep hello" to find out if it's defined (=="T") or undefined (=="U")). /s __________________________________________________ Do You Yahoo!? LAUNCH - Your Yahoo! Music Experience http://launch.yahoo.com
