![]() |
Cannot compile binary libretro addons on Ubuntu Xenial - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Game support (https://forum.kodi.tv/forumdisplay.php?fid=292) +--- Thread: Cannot compile binary libretro addons on Ubuntu Xenial (/showthread.php?tid=339581) |
Cannot compile binary libretro addons on Ubuntu Xenial - Wintermute0110 - 2019-01-20 I'm trying to compile the binary libretro addons on Ubuntu Xenial using my Linux compilation scripts, but I get the following error for all of them: Code: -- Processing /home/kodi/kodi-source/tools/depends/target/binary-addons/native/build/game.libretro.genplus/depends/common/genplus/genplus.txt Note that the scripts work like a charm in Debian Unstable with cmake 3.13.2. CMake version in Ubuntu Xenial is 3.5.1. Could be the problem related to the fact that the filename ends in a ; character?Thanks a lot. EDIT: forgot to mention, I'm using Kodi Leia from master, commit 3aac935a7e712e7a303763c649351d1569241cae .
RE: Cannot compile binary libretro addons on Ubuntu Xenial - garbear - 2019-01-28 Talked to a teammate. He said try with this line removed: https://github.com/xbmc/xbmc/blob/ccefc52/cmake/scripts/common/HandleDepends.cmake#L237 . Also try with just the quotes removed. RE: Cannot compile binary libretro addons on Ubuntu Xenial - Wintermute0110 - 2019-01-29 (2019-01-28, 21:18)garbear Wrote: Talked to a teammate. He said try with this line removed: https://github.com/xbmc/xbmc/blob/ccefc52/cmake/scripts/common/HandleDepends.cmake#L237 . Also try with just the quotes removed. Removing the quotes in Ubuntu Xenial: Works. Removing the quotes in Debian Unstable: Works. Removing the whole line in Ubuntu Xenial: Works. Removing the whole line in Debian Unstable: Works. Thanks a lot for your help! RE: Cannot compile binary libretro addons on Ubuntu Xenial - Wintermute0110 - 2019-01-29 Some more problems. In Debian Unstable, with the line removed, the addon audiodecoder.wsr fails to build. The building process gets stuck and I have t interrupt with Ctrl+C. If I restore the line the build systems works well again.Code: -- Pattern audiodecoder.* matches audiodecoder.wsr, building addon RE: Cannot compile binary libretro addons on Ubuntu Xenial - Wintermute0110 - 2019-01-29 More problems. This time compiling in Ubuntu Xenial. With the quotes removed, the addon vfs.rar doesn't build at all. The addon vfs.nfs fails to build: Code: -- ---- Configuring addon /home/kodi/kodi-source/cmake/addons/addons/vfs.smb2/vfs.smb2.txt ---- and then it gets stuck there forever. I have to interrupt the build process with Ctrl+C. Removing the line completely seems to solve the problem. EDIT if I removed the line, compilation of the addon audiodecoder.vgmstream gets stuck. It seems that removing the quotes and removing the line affects positively to some addons but negatively to other addons.EDIT 2 The build systems gets stuck on the patch program. When the build system is stuck, if I press ENTER then the message showsCode: [ 55%] Built target kodi-platform <-- build system stuck at this point I press y and ENTER and the build continues. |