Phantom wrote: > > I've had the linux version of our mod working before, however I had to > reinstall Linux on the machine i was using to compile it, so I thougth as > I'm here I'll try and get the linux version to compile with a new gcc > version, [...] > LoadLibrary failed on /home/hlds_l/eradicators/dlls/eradicators_i386.so: > /home/hlds_l/eradicators/dlls/eradicators_i386.so: undefined symbol: > _ZTVN10__cxxabiv120__si_class_type_infoE
Looks like you used gcc 3.x. That is in general not a good idea if you want your DSO to work on Linux systems compiled with gcc 2.9x. In gcc 3.x the name mangling for C++ was changed which breaks binary compatibility with gcc 2.9x binaries. Florian. _______________________________________________ To unsubscribe, edit your list preferences, or view the list archives, please visit: http://list.valvesoftware.com/mailman/listinfo/hlcoders

