2019-02-08, 23:09
Followed the instructions to build Kodi and binary addons (https://github.com/xbmc/xbmc/blob/master...ry-add-ons). Specifically, built Kodi with these commands:
Then built the game addons with this command
Everything appears to work, I enable the "2048" and "Mr Boom" addons, but I can't actually start them. In the log the following error is produced:
The .so files are under /usr/local/lib/kodi/addons/..., which is where make install put them. Where is Kodi looking for these files?
Code:
cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local
cmake --build . -- VERBOSE=1 -j4
sudo make install
Then built the game addons with this command
Code:
sudo make -j4 -C tools/depends/target/binary-addons PREFIX=/usr/local ADDONS="game.*"
Everything appears to work, I enable the "2048" and "Mr Boom" addons, but I can't actually start them. In the log the following error is produced:
Code:
20:53:08.293 T:139960959824512 ERROR: ADDON: Could not locate game.libretro.2048.so
20:53:08.294 T:139960959824512 ERROR: ADDON: Could not locate game.libretro.so.1.1.0
20:53:08.294 T:139960959824512 ERROR: RetroPlayer[PLAYER]: Failed to initialize game.libretro.2048
The .so files are under /usr/local/lib/kodi/addons/..., which is where make install put them. Where is Kodi looking for these files?