PDA

View Full Version : LoadEMUShareMemDLL::Load() failed error=./zone


silux
05-08-2003, 03:03 AM
I'm not quite sure what that means but thats the error zone spits out when I try and run the command... it also gave me an error

current_zone_version eqemu 0.4.3

I get this even though the line above it says basically the same thing with status... again I'm not sure what that means.

but then it kept doing stuf... so I"m not sure what I'm supposed to do here but I could really use some help.

Bigpull
05-09-2003, 04:07 PM
Use cvs from source forge 0.4.3 has lots of known problems that have been fixed

Muuss
06-12-2003, 06:53 AM
have you set your LD_LIBRARY_PATH to the directory where libEmuShareMem.so is, or done the necessary to allow your binary to access that file ?

if no, type :

export LD_LIBRARY_PATH=/directory/of/your/so/file

Kell
07-29-2003, 02:09 PM
This also works, and is a bit more generic
export LD_LIBRARY_PATH=./

An alternative is adding two lines in common/EMuShareMem.cpp

After
hDLL = LoadLibrary(EmuLibName);

Add
if ( !hDLL)
hDLL = LoadLibrary("./" EmuLibName);