Re: wxEuphoria (again)
- Posted by jimcbrown (admin) Jan 31, 2010
- 2026 views
Jerry_Story said...
mattlewis said...
Jerry_Story said...
Still doesn't work. "Could not open wxEuphoria library"
The svn version of wxEuphoria produced a libwxeu.so.14.
Yes, that's the current version of the shared library (which doesn't necessarily track with the overall version number of wxEuphoria).
Can you try something simple:
include dll.e ? open_dll("/usr/local/lib/libwxeu.so")
...change the path to whatever is correct. Also, please try the one you built, using the full path to the library.
Matt
include dll.e ? open_dll("/usr/local/lib/libwxeu.so") ? open_dll("/usr/lib/libwxeu.so")
jstory@jstory-desktop:~/Documents$ exu test.exw 0 0 jstory@jstory-desktop:~/Documents$
Why are you trying /usr/lib ? I thought they were installed to /usr/local/lib ..
Well, I'll just write the following code including /usr/lib to be safe. Anyways,
include dll.e ? open_dll("/usr/local/lib/libwxeu.so") ? open_dll("/usr/local/lib/libwxeu.so.14") ? open_dll("/usr/local/lib/libwxeu.so.13") ? open_dll("/usr/lib/libwxeu.so") ? open_dll("/usr/lib/libwxeu.so.14") ? open_dll("/usr/lib/libwxeu.so.13") ? open_dll("/lib/libwxeu.so") ? open_dll("/lib/libwxeu.so.14") ? open_dll("/lib/libwxeu.so.13")