Re: euphoria on Ubuntu Linux
- Posted by mattlewis (admin) May 21, 2009
- 1095 views
New install of euphoria downloaded from rsd for a linux platform. Platform is Ubuntu Linux using bash shell. Followed instructions for installing. exu refuses to run (from command line terminal). At first I thought it was a problem related to the exu executable file as the error message was "no such file or directory" (command issued from bash while in directory containing exu -> ./exu or ./exu file.ex). After many hours of working on this problem I am beginning to think that it has to do dynamic link libraries or the lack of them as if I run it under gdb because gdb tells me that it is unable to find the dynamic linker breakpoint. ldd tells me that it is NOT a dynamic executable; however, file tells me that it IS a dynamically linked program. I have done all the obvious things. Any thoughts greatly appreciated.
Here is what I on Kubuntu 9.04:
$ ldd ./eui linux-gate.so.1 => (0xb803e000) libm.so.6 => /lib/tls/i686/cmov/libm.so.6 (0xb7ffa000) libdl.so.2 => /lib/tls/i686/cmov/libdl.so.2 (0xb7ff6000) libc.so.6 => /lib/tls/i686/cmov/libc.so.6 (0xb7e92000) /lib/ld-linux.so.2 (0xb803f000)Matt