1. (Linux) exu: error in loading shared libraries...
- Posted by cense <cense at mail.ru> Aug 18, 2000
- 488 views
Well there are even more problems creeping out of leftsock today. I get the error: exu: error in loading shared libraries: exu: undefined symbol: Gpm_Wgetch this error puzzles me. I attempted using trace, i get the error on the first assingment statement. I tried printing values to find out where this error occurs, i get the error on the first print statement *if it is before the first assignment statement* I know "getch" is a conio.h ( in windows ) C function that waits for a user to type a key but what is Gpm_Wgetch? is this a problem with my code or something else like my system libraries or what? I run Linux Mandrake 6.1 with euphoria in /usr/local/euphoria and EUDIR env variable set correctly. -- cense a member of the ak-software development team http://www.ak-software.com/ contract work for Web Velocity IT inc. http://www.webvelocity.ca/
2. Re: (Linux) exu: error in loading shared libraries...
- Posted by Robert Craig <rds at ATTCANADA.NET> Aug 18, 2000
- 490 views
- Last edited Aug 19, 2000
cense writes: > exu: error in loading shared libraries: > exu: undefined symbol: Gpm_Wgetch This is not an error issued by exu itself. It sounds like it comes from the dynamic linker in the operating system. You might have an old version of GPM (mouse) server. Do you always get this error? Regards, Rob Craig Rapid Deployment Software http://www.RapidEuphoria.com
3. Re: (Linux) exu: error in loading shared libraries...
- Posted by cense <cense at mail.ru> Aug 18, 2000
- 498 views
- Last edited Aug 19, 2000
On Fri, 18 Aug 2000, Robert Craig wrote: > cense writes: > > exu: error in loading shared libraries: > > exu: undefined symbol: Gpm_Wgetch > > This is not an error issued by exu itself. > It sounds like it comes from the dynamic linker > in the operating system. You might have an old > version of GPM (mouse) server. > Do you always get this error? > > Regards, > Rob Craig > Rapid Deployment Software > http://www.RapidEuphoria.com no, this is the first time its every happened. The iterpreter crashes before its finnished. I will try to run other programs and get download the newest version of gpm and then get back to you with the results. thanks for the quick reply rob -- cense a member of the ak-software development team http://www.ak-software.com/ contract work for Web Velocity IT inc. http://www.webvelocity.ca/
4. Re: (Linux) exu: error in loading shared libraries...
- Posted by cense <cense at mail.ru> Aug 19, 2000
- 480 views
Downloading and installing the newest gpm package worked. perhaps after the translator is done you could check out what is goin on with the gpm errors and get that fixed for other people that have the older gpm. thanks rob -- cense a member of the ak-software development team http://www.ak-software.com/ contract work for Web Velocity IT inc. http://www.webvelocity.ca/
5. Re: (Linux) exu: error in loading shared libraries...
- Posted by Irv Mullins <irv at ELLIJAY.COM> Aug 19, 2000
- 506 views
On Fri, 18 Aug 2000, you wrote: > Well there are even more problems creeping out of leftsock today. I get the > error: > > exu: error in loading shared libraries: exu: undefined symbol: Gpm_Wgetch > > this error puzzles me. I attempted using trace, i get the error on the first > assingment statement. I tried printing values to find out where this error > occurs, i get the error on the first print statement *if it is before the > first > assignment statement* > > I know "getch" is a conio.h ( in windows ) C function that waits for a user to > type a key but what is Gpm_Wgetch? is this a problem with my code or something > else like my system libraries or what? Gpm_Wgetch is a function in libgpm.so. try typing nm /usr/lib/libgpm.so | less to see if that functioni exists. (It should be near the top of the list) If it does, then perhaps libgpm.so is not being loaded. Try running ldconfig /usr/lib/libgpm.so (as root). man ldconfig explains what this does. Regards, Irv