2015-10-23, 23:15
Running last version of retroplayer (oe) in the pi2. Can anybody confirm that music visualisations are not working? Known issue or a bug on my end?
regards
regards
./bootstrap
./configure
make -j2
cd ~/code/kodi/xbmc-game
mkdir build && cd build
cmake -DADDONS_TO_BUILD=../peripheral.joystick -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=~/code/kodi/xbmc-retroplayer/addons/ -DPACKAGE_ZIP=1 ~/code/kodi/xbmc-retroplayer/project/cmake/addons/
(2015-10-27, 04:10)dschoppe Wrote:Code:cd ~/code/kodi/xbmc-game
mkdir build && cd build
cmake -DADDONS_TO_BUILD=../peripheral.joystick -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=~/code/kodi/xbmc-retroplayer/addons/ -DPACKAGE_ZIP=1 ~/code/kodi/xbmc-retroplayer/project/cmake/addons/
(2015-10-27, 04:10)dschoppe Wrote:Code:cmake -DADDONS_TO_BUILD=../peripheral.joystick -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=~/code/kodi/xbmc-retroplayer/addons/ -DPACKAGE_ZIP=1 ~/code/kodi/xbmc-retroplayer/project/cmake/addons/
-DADDONS_TO_BUILD="peripheral.joystick game.libretro.2048"
(2015-10-27, 22:53)garbear Wrote: Testers: I've rebased on 15.2. Windows and OSX have been built by jenkins and are being uploaded to the mirrors
(2015-10-19, 02:17)holydhaliwal Wrote: For some reason when opening a .bin PS1 rom from kodi I don't get a dialogue asking which emulator to use to handle the file, thus it seems to default to Atari 2600 and tries playing the rom with the Stella emulator. I believe the relevant info starts at line 35 in this log http://xbmclogs.com/p8x2aymoy#line-53. What is also strange is that if I use the Internet Archive Rom Launcher to launch a PS1 game it seems to work fine http://xbmclogs.com/pcr1ods8z. Opening an .iso rom doesn't seem to do anything http://xbmclogs.com/pcahlcr2k. Opening a .img rom also doesn't seem to do anything http://xbmclogs.com/pihbdunqy.
EDIT: This is on the latest OSX build by the way.
(2015-10-27, 11:11)wsnipex Wrote: this is wrong.
1.) build and install kodi/retroplayer
2.) clone the addon(s), then do
cmake . && make && (sudo) make install
(2015-10-27, 19:12)garbear Wrote: first, change ADDONS_TO_BUILD to the add-on ID(s) or regex you wish to build, e.g.
Code:-DADDONS_TO_BUILD="peripheral.joystick game.libretro.2048"
after the cmake command, run "make" and "make install". The make step will download the add-ons and depends and build them, the install step will copy the add-ons to CMAKE_INSTALL_PREFIX.
...
-- Addon source tarball caching is enabled
package zip specified
-- Building following addons: peripheral.joystick
-- Processing /home/dan/code/kodi/xbmc-retroplayer/project/cmake/addons/depends/common/platform/platform.txt
...
The dependency target "kodi" of target "kodi-platform" does not exist.
Call Stack (most recent call first):
depends/CMakeLists.txt:34 (add_addon_depends)
This warning is for project developers. Use -Wno-dev to suppress it.
-- Generating done
-- Build files have been written to: /home/dan/code/kodi/build
...
-- Installing: /home/dan/code/kodi/xbmc-retroplayer/addons/peripheral.joystick/peripheral.joystick.so
[100%] Completed 'peripheral.joystick'
[100%] Built target peripheral.joystick
make: *** No rule to make target 'install'. Stop.
Controller configuration is disabled. Install the proper joystick support add-on.
(2015-10-27, 19:12)garbear Wrote: I should mention in the readme, cloning the repo isn't necessary. nothing in the cmake command points to ../peripheral.joystick. Instead, the cmake target ~/code/kodi/xbmc-retroplayer/project/cmake/addons/ contains a cmake project that will download the add-ons and their dependencies from github or a specified zip.
(2015-10-28, 02:22)holydhaliwal Wrote:(2015-10-27, 22:53)garbear Wrote: Testers: I've rebased on 15.2. Windows and OSX have been built by jenkins and are being uploaded to the mirrors
(2015-10-19, 02:17)holydhaliwal Wrote: For some reason when opening a .bin PS1 rom from kodi I don't get a dialogue asking which emulator to use to handle the file, thus it seems to default to Atari 2600 and tries playing the rom with the Stella emulator. I believe the relevant info starts at line 35 in this log http://xbmclogs.com/p8x2aymoy#line-53. What is also strange is that if I use the Internet Archive Rom Launcher to launch a PS1 game it seems to work fine http://xbmclogs.com/pcr1ods8z. Opening an .iso rom doesn't seem to do anything http://xbmclogs.com/pcahlcr2k. Opening a .img rom also doesn't seem to do anything http://xbmclogs.com/pihbdunqy.
EDIT: This is on the latest OSX build by the way.
I'm getting the same behaviour on the latest OS X build.
(2015-10-28, 04:59)dschoppe Wrote:(2015-10-27, 11:11)wsnipex Wrote: this is wrong.
1.) build and install kodi/retroplayer
2.) clone the addon(s), then do
cmake . && make && (sudo) make install
Thanks for the tip, wsnipex. Like garbear mentioned, I'm trying to build "out of tree". If I can't make more progress on this method I'll try your suggestion.