Re: dlopen failure

1999-05-22 Thread John Polstra
In article 37458ff0.fc9b2...@cablenet.net, Damian Hamill dam...@cablenet.net wrote: I have found the problem and it is a problem with make. By chance I did an ls -l of the directory and noticed the shared object was only 371 bytes and thought no that can't be right. Thanks for

Re: dlopen failure

1999-05-21 Thread Doug Rabson
On Thu, 20 May 1999, John Polstra wrote: In article 373c3f3f.a99db...@cablenet.net, Damian Hamill dam...@cablenet.net wrote: I have a program that is dumping core. --- Here's the gdb output; Program terminated with signal 6, Abort

Re: dlopen failure

1999-05-21 Thread John Polstra
Doug Rabson wrote: On Thu, 20 May 1999, John Polstra wrote: In article 373c3f3f.a99db...@cablenet.net, Damian Hamill dam...@cablenet.net wrote: I have a program that is dumping core. --- Here's the gdb output; Program terminated

Re: dlopen failure

1999-05-21 Thread Damian Hamill
I have found the problem and it is a problem with make. By chance I did an ls -l of the directory and noticed the shared object was only 371 bytes and thought no that can't be right. My makefile sez. mysqlacc.so : mysqlacc.o ld -Bshareable -o $@ $ -u _floor ../../lib/libV.a ...

Re: dlopen failure

1999-05-20 Thread John Polstra
In article 373c3f3f.a99db...@cablenet.net, Damian Hamill dam...@cablenet.net wrote: I have a program that is dumping core. --- Here's the gdb output; Program terminated with signal 6, Abort trap. #0 0x800b728 in _kill () (gdb) bt #0

dlopen failure

1999-05-14 Thread Damian Hamill
I have a program that is dumping core. --- Here's the gdb output; Program terminated with signal 6, Abort trap. #0 0x800b728 in _kill () (gdb) bt #0 0x800b728 in _kill () #1 0x800b34c in abort () #2 0x8004aa2 in __assert () #3 0x8003b4b in

Re: dlopen failure

1999-05-14 Thread Nate Williams
- and here's the ld line for the shared object I am loading; ld -Bshareable -o $@ $ -u _floor ../../lib/libV.a /usr/local/lib/mysql/libmysqlclient.a /usr/lib/libm.a This is probably unrelated to the bug (but it might be related). Are