2016-01-01 00:09:52 @kido happy new year :) 2016-01-01 00:40:52 Nokius kido: thx u too 2016-01-01 01:05:47 Nokius kido: u are quit optimistic :P 2016-01-01 01:06:46 @kido :D 2016-01-01 01:07:14 @kido that can be a new year's resolution 2016-01-01 01:18:20 * Nokius now confused wich pogo is left and right I should get some sleep 2016-01-01 01:18:20 Nokius http://www.rootjunky.com/moto-360-adapter-usb-cable/ 2016-01-01 03:06:33 toxip my linux server is building asteroid os, time to go to sleep :P 2016-01-01 07:26:14 locusf good morning and happy new year :) 2016-01-01 10:11:03 Nokius locusf: thx, happy new year to u too 2016-01-01 11:22:47 toxxip 54 warnings and 4 errors after building asteroid os 2016-01-01 11:23:53 @kido toxxip: pastebin ;) 2016-01-01 11:25:06 toxxip kido: one second. need to get on computer. 2016-01-01 11:30:33 toxip is there a way to get the errors and warnings summary somewhere? 2016-01-01 11:41:09 toxip kido: where do I get the logs with all the errors? 2016-01-01 11:46:42 @kido toxip: I don't know any way to get back every error but if you remember the recipes that failed you can access them in tmp-glibc/work/arm*/recipe/*/temp/log.do_compile 2016-01-01 11:47:04 @kido toxip: else you re-run a build and it will immediately restart from the latest failing recipes 2016-01-01 11:47:17 @kido so after some seconds you'll get the same errors again 2016-01-01 11:47:33 toxip alright, then. I'll try rebuilding 2016-01-01 11:47:47 @kido alright :) 2016-01-01 11:51:08 toxip should I care about the warnings? :D 2016-01-01 11:51:28 @kido toxip: well, often no 2016-01-01 11:51:38 @kido I should care about the warnings not you :) 2016-01-01 11:51:44 toxip :P 2016-01-01 11:54:43 toxip http://pastebin.com/DfkUtsy1 2016-01-01 11:55:02 toxip oe_runmake failed seems to be the cause 2016-01-01 11:58:18 toxip http://pastebin.com/xjB69jwE 2016-01-01 11:58:29 toxip log file for that specific task 2016-01-01 11:58:46 @kido alright I'm checking it 2016-01-01 12:00:04 toxip make[1]: *** No rule to make target `mceiface.cpp', needed by `mceiface.o'. Stop. 2016-01-01 12:00:59 toxip make: *** [sub-src-make_first] Error 2 2016-01-01 12:01:16 toxip probably those 2016-01-01 12:02:54 toxip an issue with a makefile? 2016-01-01 12:03:03 @kido mhhh again those qdbusxml2cpp... 2016-01-01 12:05:17 @kido well, the quick and dirty way is to install qdbusxml2cpp on your build system, the slow and dirty way is to use sed -i "s@qdbusxml2cpp@theBuiltqdbuxml2cpp@" and that's what I currently used for other recipes, and the nice good way would be to import the correct dir containing the built qdbusxml2cpp in the PATH before building a Qt recipe 2016-01-01 12:05:26 @kido but that would probably require modifying meta-qt5 2016-01-01 12:05:41 @kido that's gonna be a 2016 resolution 2016-01-01 12:06:33 @kido if you check build/tmp-glibc/work/armv7a-vfp-neon-oe-linux-gnueabi/nemo-qml-plugin-systemsettings/+git8e98f8c8069592d3dd21011743fdfb4d2efcc50a-r1/git/src/src.pro there is a line which generate the file mceiface.cpp and mceiface.h from mce.xml via qdbusxml2cpp which is a Qt tool built by openembedded earlier but not found in the path 2016-01-01 12:07:20 @kido it is in build/tmp-glibc/sysroots/x86_64-linux/usr/bin/qt5/ and only build/tmp-glibc/sysroots/x86_64-linux/usr/bin/ is added to PATH 2016-01-01 12:07:46 toxip ah, I see 2016-01-01 12:07:47 @kido I think that's the same issue in all others recipes error 2016-01-01 12:08:18 @kido if your build server is on debian the package is qtbase5-dev-tools 2016-01-01 12:08:49 toxip it's ubuntu so yeah, debian based 2016-01-01 12:09:06 toxip I'll try that 2016-01-01 12:11:31 toxip I guess I could try the nice good way 2016-01-01 12:11:50 @kido toxip: I think I just found a nice good and quick way 2016-01-01 12:12:26 toxip nice :D 2016-01-01 12:12:35 @kido it's not exactly the perfect day for having time to modify that but it seems that https://github.com/meta-qt5/meta-qt5/blob/master/classes/qmake5_paths.bbclass this file is responsible for setting those bin/qt5 dir 2016-01-01 12:13:22 @kido and according to the comment at the top of the file we can remove the QT_DIR_NAME 2016-01-01 12:17:31 toxip so need to add something in there? I'm not really familiar with this thing 2016-01-01 12:18:12 @kido I'll try to build asteroid with a qmake5_paths.bbclass containing http://pastebin.com/u791A4i5 in src/meta-asteroid/classes/ while eating and will tell you if it works 2016-01-01 12:19:05 @kido thanks for reporting the bug, it's not the first time I meet that issue but I recognize I never fixed it correctly 2016-01-01 12:19:55 @kido if the qmake5_paths.bbclass file works it should fix a bunch of hackish recipes I wasn't very proud of... :) 2016-01-01 12:20:38 toxip great! 2016-01-01 12:20:46 toxip glad I could help somehow >_< 2016-01-01 12:20:56 toxip so it was missing some slashes? 2016-01-01 12:22:13 toxip compared your pastebin to the one on meta-qt5 github and yours has extra slashes added there 2016-01-01 12:24:37 @kido no the difference is the empty QT_DIR_NAME 2016-01-01 12:27:49 toxip oh yeah that 2016-01-01 13:59:58 toxip kido: any progress? 2016-01-01 14:00:10 toxip finished your morning coffee? :P 2016-01-01 15:48:15 @kido toxip: ahah no still kept busy my new year's meal 2016-01-01 15:53:02 @kido installing qtbase5-dev-tools wasn't enough for you? 2016-01-01 21:56:36 @kido toxip: https://github.com/AsteroidOS/meta-asteroid/commit/f87bc6bdda32328b5fad531f5e564be3ae902a1b it should fix your problems in a clean way, sorry for the delay I had a busy day because of the new year... :) keep me updated of your build progress and if this commit works for you 2016-01-01 21:57:08 @kido just cd to asteroid/src/meta-asteroid, git pull and re-un a bitbake asteroid-image from asteroid/build/ 2016-01-01 22:00:09 @kido it will introduce plenty of warnings about paths containing "//" but they will be fixed when I'll update meta-qt5 to the jethro branch which is currently problematic for wayland clients 2016-01-01 22:03:53 @kido the following commit is also needed 2016-01-01 23:02:11 @kido after all I had to change plenty of recipes so it might have introduced some regressions