![]() |
Git Build Error - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32) +--- Forum: Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=26) +---- Forum: PVR (https://forum.kodi.tv/forumdisplay.php?fid=136) +---- Thread: Git Build Error (/showthread.php?tid=97457) Pages:
1
2
|
Git Build Error - CrashX - 2011-03-22 Try to compile version: https://github.com/opdenkamp/xbmc/commit/219728aab9c29a3145d3f3797e53d3fd62e3b648 git pull git clean -xf ./bootstrap Code: autoreconf: Entering directory `.' I compile XBMC git trunk all the time which works 100%, is their something else I need to compile your branch ? - opdenkamp - 2011-03-22 you probably did a "make distclean" which I didn't fix yet after the code reshuffle merge. this should fix it: Code: git reset --hard HEAD - CrashX - 2011-03-22 Actually I didn't do "make distclean". I just checked out the branch and build it. Will try what you suggested when I get home. Couple of more questions: 1) Do you want us to post issues here in this forum ? 2) What OS are you currently building on and support at this time ? I noticed you created the windows build but it hangs alot. Any other developers helping you out ? - opdenkamp - 2011-03-22 hmm didn't scroll all the way down there. looks like you don't have autotools installed or it can't be found. 1) yes, please 2) I'm using linux (ubuntu) myself. I boot into windows once a week or so to fix some things there, like today ![]() - CrashX - 2011-03-23 dushmaniac Wrote:you probably did a "make distclean" which I didn't fix yet after the code reshuffle merge. That fixed it thanks ... - Jimmer - 2011-03-24 Hi, not sure if this needs a new thread? But, I've checked out your repo at the below commit and everytime I build it it just stops at the guilib step https://github.com/opdenkamp/xbmc/commit/8d9fcb8db121bbc1322bf93a31b0c13006273224 I'm on Maverick and compile the main xbmc git without problems. Do you have any dependancies that are special to your fork that are not listed in README.ubuntu? I've been using the following config flags (one's I use for 'normal' xbmc): Code: ./configure --prefix=/usr --disable-pulse --enable-libbluray --enable-vdpau I've also checked out dteirney's branch (I'm a myth user....), but I also get to the same point in the compile. I've already been doing Code: git clean -xfd I will try again with the Code: git reset --hard HEAD and post the terminal output if it fails again..... Jim PS also tried with external libraries as well, but it still halted at the guilib stage.... - opdenkamp - 2011-03-24 I haven't looked at the readme files for a while, but the requirements are the same for "normal xmbc" as for the "pvr xbmc". if you're having problems getting the required dev packages in, do this: Code: sudo -s now to make sure your tree is clean, do this: Code: git checkout master and build xbmc: Code: ./bootstrap && ./configure && make && make install - Jimmer - 2011-03-24 Thanks for the quick reply! I actually had another run at it with Code: git reset --hard HEAD and it worked like a charm.... guess dteirney's branch also doesn't have make distclean implemented? Because this works for his git tree as well... keep up the good work! Jimmer - opdenkamp - 2011-03-24 yes he forked off my branch, so he his branch has the same problem. - CrashX - 2011-03-24 dushmaniac: Anyway to change xbmc to xbmc-pvr during build time so that we can have two version installed on our systems ? - opdenkamp - 2011-03-24 sorry, I'm not spending time on packaging. I'm just using our normal packaging sources available on github. - CrashX - 2011-03-24 dushmaniac Wrote:sorry, I'm not spending time on packaging. I'm just using our normal packaging sources available on github. I am sorry, I wasn't asking you to build it, since I build my packages myself. I was asking if it was possible to change name at build time. - opdenkamp - 2011-03-24 you would have to edit some things to get that working, not just the name of the package, but also the installation directories. if you want to do this, I recommend you give the pvr version some prefix like /usr/local/xbmc-pvr and create a little shell script that starts it from /usr/local/xbmc-pvr/bin/xbmc (and don't name it "xbmc" ![]() - Jimmer - 2011-03-25 dushmaniac Wrote:yes he forked off my branch, so he his branch has the same problem. Sorry to take it off-topic, but is the myth plug-in disabled by default in your tree? Basically, the addon configuration is permanently greyed out. I've entered my settings in the addons xml file (with the same settings that work for my backend from dteirney's fork) but after trying (and failing) to activate tv in the settings, the log reports that it cannot find XBMC_MythTV.pvr... Jimmer PS forgot to say that I checked out your master branch... - opdenkamp - 2011-03-25 I did change something in it's Makefile a couple of days ago because it caused the tvheadend to fail because of some weird linking (probably someone did a c+p and forgot to edit that). it should still build, though I didn't check that. if it doesn't, someone else should have a look at it, as I don't have time to look into anything else than the "pvr core" and the tvheadend add-on. |