RE: [hlcoders] Linux compiling question

2005-05-11 Thread Alfred Reynolds
Linux .so files only resolve linker dependencies at runtime, you may have undefined symbols (i.e missing functions) from your server code. Use the "nm" tool to find out what is missing ( the "U" symbols in the binary). - Alfred Original Message From: [EMAIL PROTECTED] [mailto:[EMAIL PROTE

Re: [hlcoders] Linux compiling question

2005-05-11 Thread Patrick Flanagan
I ran nm server_i486.so > nm_out.txt and then grep -n " U " nm_out.txt and I get this: 1: U acosf@@GLIBC_2.0 2: U acos@@GLIBC_2.0 332: U asin@@GLIBC_2.0 387: U CommandLine 391: U cosf@@GLIBC_2.0 392: U cos@@GLIBC_2.0 440: U __cxa_allocate_e