Forum
Problem: Cant start XBMC after I installed MONO - Printable Version

+- Forum (http://forum.xbian.org)
+-- Forum: Software (/forum-6.html)
+--- Forum: Kodi (/forum-18.html)
+--- Thread: Problem: Cant start XBMC after I installed MONO (/thread-1020.html)



Problem: Cant start XBMC after I installed MONO - gurgelx - 19th Jun, 2013 07:16 AM

Im trying to run MONO on my raspberry-pi.

I install it by running sudo apt-get install mono-complete.

XBMC seems to be working, until I restart.
Then it wont boot and freezes on the loadingscreen.

If I try to start xbmc from the commandline I get this:
Terminal
/usr/local/lib/xbmc/xbmc.bin: symbol lookup error: /usr/local/lib/xbmc/xbmc.bin: undefined symbol: _ZTIN6TagLib8IOStreamE

But if I uninstall mono xbmc starts without a problem.

I noticed this thread http://forum.xbian.org/thread-770.html with the same error.
And it seems like sparkleshare uses mono which causes the error.

Is it possible to install mono and run xbmc on same raspberry pi ?


RE: Problem: Cant start XBMC after I installed MONO - mk01 - 23rd Jun, 2013 01:39 AM

it looks like it installs a library providing libtag functionality, but not compatible with the version xbmc was compiled against.

try using export LD_LIBRARY_PATH="/usr/local/lib" in xbmc startup script.


RE: Problem: Cant start XBMC after I installed MONO - gurgelx - 23rd Jun, 2013 09:00 PM

(23rd Jun, 2013 01:39 AM)mk01 Wrote:  it looks like it installs a library providing libtag functionality, but not compatible with the version xbmc was compiled against.

try using export LD_LIBRARY_PATH="/usr/local/lib" in xbmc startup script.

That worked perfectly, Thanks!