Re: edbi on 64 bit machines?
- Posted by jimcbrown (admin) Apr 26, 2012
- 4073 views
egis said...
file gives:
file /usr/share/euphoria/edbi/drivers/mysql/edbi_mysql.so edbi_musql.so: ELF 64-bit LSB shared object, AMD x86-64, version 1 (SYSV), not stripped
This looks strange to me. You appear to have a typo in the file name. Also, file (at least version 4.12) should be displaying the full path, not just the file name.
egis said...
Would a reboot help? It is on a server so I dont like to do that if I can avoid it.
I doubt it would help.
egis said...
Any other suggestions?
Can you double check the permissions on /usr/share/euphoria/edbi/drivers/mysql/edbi_mysql.so ? With /bin/ls or stat ?
You could try a "chmod 777" on it to make the permissions as open as possible.
Finally, you could try this:
$ echo 'int main() { return 0; }' > temp.c $ gcc -m64 -o temp temp.c /usr/share/euphoria/edbi/drivers/mysql/edbi_mysql.so $ ./temp
That might provide more insight into why this is failing.