Raj_ | i have not seen this before g++: error: unrecognized command line option ‘-mthumb | 00:00 |
---|---|---|
Raj_ | i have following flags in makefile CFLAGS = -W -O0 -g -std=c++11 -pthread -mthumb -mcpu=cortex-a9 -mtune=cortex-a9 -mfpu=neon -ffast-math | 00:02 |
*** pumpernickel_ <pumpernickel_!~pumpernic@41333086.cst.lightpath.net> has joined #yocto | 00:02 | |
pumpernickel_ | so... | 00:03 |
pumpernickel_ | I was wondering... | 00:03 |
pumpernickel_ | If I make a package that contains a static library, is there any way for me to get bitbake to add the -L to the built library? | 00:03 |
pumpernickel_ | I assume there must be, but I've been having trouble identifying how. | 00:04 |
pumpernickel_ | To formulate the question better: | 00:04 |
wyrm | Raj_: Try dropping -mthumb and see how that works for you. | 00:06 |
*** fledermaus <fledermaus!~vivek@78.32.176.249> has quit IRC | 00:08 | |
Raj_ | it still fails for others g++: error: unrecognized command line option ‘-mfpu=neon’ g++: error: unrecognized command line option ‘-mvectorize-with-neon-quad’ g++: | 00:09 |
*** fledermaus <fledermaus!~vivek@78.32.176.249> has joined #yocto | 00:09 | |
wyrm | Oh, hey. Are you compiling on your IMX6 board, or cross-compiling for that board? | 00:10 |
Raj_ | cross compiling on UBUNTU | 00:10 |
*** glfernando <glfernando!~fernando@134.134.139.77> has quit IRC | 00:11 | |
wyrm | You need to call your tools with the appropriate prefix. arm-linux-gcc, arm-linux-g++, etc | 00:11 |
wyrm | or possibly arm-linux-somethingabisomething-* | 00:12 |
Raj_ | let me try that | 00:13 |
Raj_ | thanks | 00:13 |
wyrm | Once you find the right one, you can use... | 00:14 |
wyrm | export CROSS_COMPILE=arm-linux-whatever- | 00:14 |
wyrm | and that'll set the prefix for you. | 00:14 |
pumpernickel_ | I build libA.a, and I want libB.so to link it into it. What is the proper way to pass the linker path to libA.a? | 00:15 |
Raj_ | @wyrm, Thanks a lot | 00:15 |
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-jgepyobqhfcxulla> has quit IRC | 00:16 | |
wyrm | pumpernickel_: ld -o <output_file> <object_file>.o -L<path_to_library> -l<name_of_library> | 00:19 |
wyrm | Note that the library file itself must be named lib<name_of_library>.a, but the argument to ld is just <name_of_library> without the lib- prefix or .a suffix. | 00:21 |
pumpernickel_ | wyrm: Thanks for your help in advance. I understand the syntax of how to link the library. | 00:21 |
pumpernickel_ | The problem is getting that pesky -L argument into my makefile. | 00:21 |
pumpernickel_ | I'm not sure the proper path to use, since the static library isn't put onto the target. | 00:21 |
pumpernickel_ | Actually, I take that back, it *does* put the libA.a onto the target. | 00:22 |
pumpernickel_ | The problem I'm having is that it still doesn't find it. | 00:22 |
pumpernickel_ | I had thought that --sysroot to the compiler would have made /usr/lib a search path for static libraries as well, but it doesn't seem to be the case. | 00:23 |
wyrm | Is there a priority conflict? I mean, is the compiler finding another library of the same name first? | 00:23 |
wyrm | Or, linker, rather. | 00:23 |
pumpernickel_ | Sorry, double-checking that I'm not accidentally putting the full-name in my Makefile. | 00:24 |
pumpernickel_ | For ease of use to the other developers here, I had to write Makefile infrastructure to make it appear more like Android.mk (make of that what you will.) | 00:25 |
*** glfernando <glfernando!~fernando@134.134.139.77> has joined #yocto | 00:25 | |
pumpernickel_ | So it's a bit abstract. | 00:25 |
*** sameo <sameo!~samuel@192.55.54.42> has quit IRC | 00:28 | |
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has quit IRC | 00:29 | |
*** Raj_ <Raj_!3f526eb2@gateway/web/freenode/ip.63.82.110.178> has quit IRC | 00:31 | |
pumpernickel_ | Hmm, perhaps my misunderstanding comes from the gnu toolchain. | 00:32 |
pumpernickel_ | In the past, I've been able to link static libraries without specifying the trimmed down name. | 00:32 |
pumpernickel_ | Though I admit, I'm using g++ to do the link step. | 00:32 |
pumpernickel_ | something akin to | 00:33 |
pumpernickel_ | g++ libA.a b.o -o libB.so | 00:34 |
pumpernickel_ | Although, I suppose this is more accurate: g++ b.o libA.a -o libB.so | 00:40 |
pumpernickel_ | Since in that scenario, the implication is that b.o depends on libA.a | 00:41 |
pumpernickel_ | wyrm: Sure enough, you were correct! Thanks again for your help. | 00:43 |
pumpernickel_ | I suppose if I don't pass it as -lLibName, it doesn't search the same paths, and must just assume that it's in the local directory. | 00:44 |
pumpernickel_ | Stupid mistake on my part. | 00:44 |
*** pumpernickel_ <pumpernickel_!~pumpernic@41333086.cst.lightpath.net> has quit IRC | 00:49 | |
*** ekil <ekil!~magnus@m176-71-136-193.cust.tele2.se> has quit IRC | 00:56 | |
*** sjolley <sjolley!sjolley@nat/intel/x-kdxyddltaausrnop> has joined #yocto | 01:01 | |
*** Mylene <Mylene!~Mylene@204.ip-51-254-215.eu> has quit IRC | 01:14 | |
*** ekil <ekil!~magnus@m37-2-42-245.cust.tele2.se> has joined #yocto | 01:14 | |
*** aragua <aragua!~fabien@LPoitiers-656-1-79-67.w193-251.abo.wanadoo.fr> has quit IRC | 01:14 | |
*** Mylene_ <Mylene_!~Mylene@204.ip-51-254-215.eu> has joined #yocto | 01:23 | |
*** aragua <aragua!~fabien@LPoitiers-656-1-79-67.w193-251.abo.wanadoo.fr> has joined #yocto | 01:23 | |
*** blueness <blueness!~blueness@gentoo/developer/blueness> has quit IRC | 01:26 | |
*** jjmb <jjmb!~jjmb@2601:46:c602:c4a1:1423:8742:d05e:e4ab> has joined #yocto | 01:31 | |
*** jjmb1 <jjmb1!~jjmb@2601:46:c602:c4a0:2d8b:1465:e5ec:eebe> has joined #yocto | 01:31 | |
*** jjmb2 <jjmb2!~jjmb@c-98-225-183-175.hsd1.pa.comcast.net> has joined #yocto | 01:32 | |
*** jjmb3 <jjmb3!~jjmb@c-98-225-183-175.hsd1.pa.comcast.net> has joined #yocto | 01:33 | |
*** jjmb <jjmb!~jjmb@2601:46:c602:c4a1:1423:8742:d05e:e4ab> has quit IRC | 01:35 | |
*** jjmb1 <jjmb1!~jjmb@2601:46:c602:c4a0:2d8b:1465:e5ec:eebe> has quit IRC | 01:35 | |
*** jjmb2 <jjmb2!~jjmb@c-98-225-183-175.hsd1.pa.comcast.net> has quit IRC | 01:37 | |
*** Mylene_ <Mylene_!~Mylene@204.ip-51-254-215.eu> has quit IRC | 01:42 | |
*** aragua <aragua!~fabien@LPoitiers-656-1-79-67.w193-251.abo.wanadoo.fr> has quit IRC | 01:43 | |
*** aragua <aragua!~fabien@LPoitiers-656-1-79-67.w193-251.abo.wanadoo.fr> has joined #yocto | 02:08 | |
*** aehs29 <aehs29!aehernan@nat/intel/x-rxeakbhhhtmpxwrp> has joined #yocto | 02:34 | |
*** armpit <armpit!~akuster@64.2.3.194> has quit IRC | 02:52 | |
*** blueness <blueness!~blueness@gentoo/developer/blueness> has joined #yocto | 02:58 | |
nerdboy | wyrm: are you talking server or client problem? | 03:01 |
*** blueness_ <blueness_!~blueness@gentoo/developer/blueness> has quit IRC | 03:11 | |
*** paulg <paulg!~paulg@198-84-239-75.cpe.teksavvy.com> has quit IRC | 03:12 | |
*** fledermaus <fledermaus!~vivek@78.32.176.249> has quit IRC | 03:14 | |
*** manuel_ <manuel_!~manuel@p5792128A.dip0.t-ipconnect.de> has quit IRC | 03:23 | |
*** blueness_ <blueness_!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has joined #yocto | 03:49 | |
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC | 03:55 | |
*** nerdboy <nerdboy!~sarnold@gatekeeper.gentoogeek.org> has joined #yocto | 03:56 | |
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto | 03:56 | |
*** jjmb <jjmb!~jjmb@2601:46:c602:c4a0:70e6:e6ca:f709:e362> has joined #yocto | 04:05 | |
*** jjmb3 <jjmb3!~jjmb@c-98-225-183-175.hsd1.pa.comcast.net> has quit IRC | 04:07 | |
*** blueness_ <blueness_!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has quit IRC | 04:12 | |
*** Klox <Klox!~Jacob@c-24-15-54-56.hsd1.il.comcast.net> has joined #yocto | 05:01 | |
*** AndersD <AndersD!~anders@h83-209-191-235.dynamic.se.alltele.net> has joined #yocto | 05:21 | |
*** armpit <armpit!~akuster@2601:202:4000:1239:9ca2:2131:a4c0:cdbd> has joined #yocto | 05:38 | |
*** AndersD <AndersD!~anders@h83-209-191-235.dynamic.se.alltele.net> has quit IRC | 05:47 | |
*** blueness_ <blueness_!~blueness@74.77.145.97> has joined #yocto | 05:52 | |
*** AndersD <AndersD!~anders@h83-209-191-235.dynamic.se.alltele.net> has joined #yocto | 05:56 | |
*** tasslehoff <tasslehoff!~Tasslehof@77.40.182.98> has joined #yocto | 06:01 | |
*** hamis_lt_u <hamis_lt_u!~irfan@110.93.212.98> has joined #yocto | 06:01 | |
*** LocutusOfBorg <LocutusOfBorg!~Gianfranc@host229-33-dynamic.54-79-r.retail.telecomitalia.it> has quit IRC | 06:16 | |
*** ekil <ekil!~magnus@m37-2-42-245.cust.tele2.se> has quit IRC | 06:24 | |
*** ekil <ekil!~magnus@m37-2-42-245.cust.tele2.se> has joined #yocto | 06:25 | |
*** sujith_h <sujith_h!~toaster@kde/developers/sujithh> has joined #yocto | 06:25 | |
*** blueness_ <blueness_!~blueness@74.77.145.97> has quit IRC | 06:27 | |
*** aehs29 <aehs29!aehernan@nat/intel/x-rxeakbhhhtmpxwrp> has left #yocto | 06:29 | |
*** blueness_ <blueness_!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has joined #yocto | 06:31 | |
*** morphis <morphis!~morphis@pD9ED7667.dip0.t-ipconnect.de> has joined #yocto | 06:43 | |
*** pohly <pohly!~pohly@p5DE8F0DE.dip0.t-ipconnect.de> has joined #yocto | 06:45 | |
*** Ulfalizer <Ulfalizer!~ulf@217.89.178.116> has joined #yocto | 06:50 | |
*** mattsm <mattsm!uid128834@gateway/web/irccloud.com/x-xkdpkozmdxufgqnj> has quit IRC | 06:51 | |
*** ekil <ekil!~magnus@m37-2-42-245.cust.tele2.se> has quit IRC | 07:14 | |
*** frsc <frsc!~frsc@80.149.173.67> has joined #yocto | 07:15 | |
*** ekil <ekil!~magnus@m37-2-42-245.cust.tele2.se> has joined #yocto | 07:16 | |
*** _stephan <_stephan!~stephan@p4FE04CA9.dip0.t-ipconnect.de> has joined #yocto | 07:20 | |
*** Mylene <Mylene!~Mylene@204.ip-51-254-215.eu> has joined #yocto | 07:23 | |
*** weston <weston!79f4c042@gateway/web/freenode/ip.121.244.192.66> has joined #yocto | 07:31 | |
weston | I am trying to follow the latest document for AGL on Porter board. I could set up till bitbake step. But during bitbake, I am hitting this error. http://pastebin.com/uYaedsJZ | 07:31 |
weston | Also, please see my local.conf file. http://pastebin.com/TD96mjpW | 07:31 |
weston | Any help please | 07:31 |
*** yann|work <yann|work!~yann@nan92-1-81-57-214-146.fbx.proxad.net> has quit IRC | 07:33 | |
weston | Here is my bb file http://pastebin.com/J5hbLZdE | 07:36 |
*** TobSnyder <TobSnyder!~schneider@ip923450f2.dynamic.kabel-deutschland.de> has joined #yocto | 07:40 | |
*** LocutusOfBorg <LocutusOfBorg!~Gianfranc@pd-18-107-14.service.infuturo.it> has joined #yocto | 07:48 | |
*** raykinsella78 <raykinsella78!rkinsell@nat/intel/x-dlpdpxaimjkimgrm> has joined #yocto | 07:49 | |
*** TobSnyder1 <TobSnyder1!~schneider@146.52.80.242> has joined #yocto | 07:53 | |
*** TobSnyder <TobSnyder!~schneider@ip923450f2.dynamic.kabel-deutschland.de> has quit IRC | 07:53 | |
*** raykinsella78 <raykinsella78!rkinsell@nat/intel/x-dlpdpxaimjkimgrm> has left #yocto | 07:53 | |
*** rob_w <rob_w!~bob@93.104.205.194> has joined #yocto | 07:54 | |
*** rob_w <rob_w!~bob@unaffiliated/rob-w/x-1112029> has joined #yocto | 07:54 | |
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-xkkamixmhucrqfrx> has joined #yocto | 07:59 | |
*** Guest44141 is now known as Jackie_huang | 08:00 | |
*** sjolley <sjolley!sjolley@nat/intel/x-kdxyddltaausrnop> has quit IRC | 08:02 | |
*** sjolley <sjolley!~sjolley@134.134.137.75> has joined #yocto | 08:03 | |
*** fl0v0 <fl0v0!~fvo@p5DDC6BEA.dip0.t-ipconnect.de> has joined #yocto | 08:07 | |
*** blueness_ <blueness_!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has quit IRC | 08:07 | |
*** LocutusOfBorg <LocutusOfBorg!~Gianfranc@pd-18-107-14.service.infuturo.it> has quit IRC | 08:11 | |
*** Jackie_huang <Jackie_huang!~quassel@106.120.101.38> has quit IRC | 08:11 | |
*** Jackie <Jackie!~quassel@106.120.101.38> has joined #yocto | 08:12 | |
*** Jackie is now known as Guest69960 | 08:12 | |
*** joshuagl <joshuagl!~joshuagl@192.198.151.43> has joined #yocto | 08:16 | |
*** townxelliot <townxelliot!~ell@176.251.36.101> has joined #yocto | 08:19 | |
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has joined #yocto | 08:20 | |
*** blueness_ <blueness_!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has joined #yocto | 08:25 | |
*** _TuTizz <_TuTizz!~TuTizz@46.18.96.158> has joined #yocto | 08:25 | |
*** TuTizz <TuTizz!~TuTizz@unaffiliated/tutizz> has quit IRC | 08:26 | |
weston | hello | 08:27 |
weston | any inputs would be helpful | 08:27 |
*** LocutusOfBorg <LocutusOfBorg!~Gianfranc@pd-18-107-14.service.infuturo.it> has joined #yocto | 08:29 | |
*** t0mmy <t0mmy!~tprrt@ram31-2-82-228-88-46.fbx.proxad.net> has quit IRC | 08:30 | |
*** LocutusOfBorg <LocutusOfBorg!~Gianfranc@pd-18-107-14.service.infuturo.it> has quit IRC | 08:30 | |
*** LocutusOfBorg <LocutusOfBorg!~Gianfranc@pd-18-107-14.service.infuturo.it> has joined #yocto | 08:31 | |
*** edbart <edbart!ebartosh@nat/intel/x-vttxxddojnmctdrt> has joined #yocto | 08:31 | |
weston | ERROR: Required build target 'agl-demo-platform' has no buildable providers. Missing or unbuildable dependency chain was: ['agl-demo-platform', '#'] | 08:32 |
*** vdehors <vdehors!~vincent@LAubervilliers-656-1-235-184.w193-248.abo.wanadoo.fr> has joined #yocto | 08:37 | |
*** csanchezdll <csanchezdll!~user@galileo.kdpof.com> has joined #yocto | 08:37 | |
*** LocutusOfBorg <LocutusOfBorg!~Gianfranc@pd-18-107-14.service.infuturo.it> has quit IRC | 08:38 | |
*** noraply <noraply!~nora@sestofw01.enea.se> has left #yocto | 08:39 | |
*** toscalix <toscalix!~agustinbe@149.100.1.50> has joined #yocto | 08:39 | |
*** melonipoika_ <melonipoika_!~jose@194.9.252.237> has joined #yocto | 08:41 | |
*** grma <grma!~gruberm@80.93.38.128> has joined #yocto | 08:42 | |
*** melonipoika <melonipoika!~jose@194.9.252.237> has quit IRC | 08:43 | |
*** captaini- <captaini-!~captainig@hgt68-1-78-212-24-154.fbx.proxad.net> has joined #yocto | 08:44 | |
*** roccof <roccof!~roccof@93.51.177.218> has joined #yocto | 08:53 | |
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has joined #yocto | 08:55 | |
*** blueness <blueness!~blueness@gentoo/developer/blueness> has quit IRC | 08:56 | |
*** vdehors <vdehors!~vincent@LAubervilliers-656-1-235-184.w193-248.abo.wanadoo.fr> has quit IRC | 08:57 | |
*** melonipoika__ <melonipoika__!~jose@194.9.252.237> has joined #yocto | 08:57 | |
*** vdehors <vdehors!~vincent@LAubervilliers-656-1-235-184.w193-248.abo.wanadoo.fr> has joined #yocto | 08:57 | |
*** blueness <blueness!~blueness@gentoo/developer/blueness> has joined #yocto | 09:00 | |
*** melonipoika_ <melonipoika_!~jose@194.9.252.237> has quit IRC | 09:00 | |
*** yann|work <yann|work!~yann@LFbn-1-1026-146.w86-247.abo.wanadoo.fr> has joined #yocto | 09:02 | |
*** LocutusOfBorg <LocutusOfBorg!~Gianfranc@2.238.240.162> has joined #yocto | 09:14 | |
*** ajtag <ajtag!~ajtag@81.102.232.125> has quit IRC | 09:14 | |
*** jbrianceau_away is now known as jbrianceau | 09:15 | |
*** LocutusOfBorg <LocutusOfBorg!~Gianfranc@2.238.240.162> has quit IRC | 09:18 | |
*** LocutusOfBorg <LocutusOfBorg!~Gianfranc@2.238.240.162> has joined #yocto | 09:18 | |
*** ajtag <ajtag!~ajtag@cpc10-lee211-2-0-cust124.7-1.cable.virginm.net> has joined #yocto | 09:22 | |
*** ericbutters <ericbutters!6cab81a3@gateway/web/freenode/ip.108.171.129.163> has quit IRC | 09:23 | |
*** captainigloo <captainigloo!~captainig@2001:41d0:8:114b::1> has quit IRC | 09:24 | |
*** captaini- is now known as captainigloo | 09:24 | |
*** CTtpollard <CTtpollard!~tom@82-70-136-246.dsl.in-addr.zen.co.uk> has quit IRC | 09:26 | |
*** psnsilva <psnsilva!~psnsilva@193-126-29-154.net.novis.pt> has joined #yocto | 09:26 | |
*** CTtpollard <CTtpollard!~tom@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto | 09:28 | |
*** psadro <psadro!~Thunderbi@2620:0:ed0:800a:72f3:95ff:fe1d:9866> has quit IRC | 09:34 | |
*** sameo <sameo!samuel@nat/intel/x-wissjpnlphqfksvu> has joined #yocto | 09:36 | |
*** CTtpollard <CTtpollard!~tom@82-70-136-246.dsl.in-addr.zen.co.uk> has quit IRC | 09:37 | |
*** psadro <psadro!~Thunderbi@216.234.148.134> has joined #yocto | 09:37 | |
*** CTtpollard <CTtpollard!~tom@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto | 09:40 | |
*** edbart <edbart!ebartosh@nat/intel/x-vttxxddojnmctdrt> has quit IRC | 09:41 | |
*** edbart <edbart!ebartosh@nat/intel/x-evplfsrqqcibnhur> has joined #yocto | 09:43 | |
*** jonathanmaw <jonathanmaw!~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto | 09:46 | |
*** edbart <edbart!ebartosh@nat/intel/x-evplfsrqqcibnhur> has quit IRC | 09:47 | |
*** edbart <edbart!ebartosh@nat/intel/x-souvgrzbyylpfebg> has joined #yocto | 09:48 | |
*** ulf` <ulf`!ulf@nat/intel/x-ozwrnlsucgcualpk> has joined #yocto | 09:52 | |
*** psnsilva <psnsilva!~psnsilva@193-126-29-154.net.novis.pt> has quit IRC | 09:52 | |
*** ylouise <ylouise!~yalouise@134.134.139.77> has joined #yocto | 09:52 | |
*** geheimnis` <geheimnis`!~geheimnis@23.226.237.192> has quit IRC | 09:52 | |
*** ulf`_ <ulf`_!~ulf@134.134.139.74> has quit IRC | 09:52 | |
*** megha_dey <megha_dey!megha@nat/intel/x-ausgwibefdiuqerm> has quit IRC | 09:52 | |
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has quit IRC | 09:53 | |
*** aragua <aragua!~fabien@LPoitiers-656-1-79-67.w193-251.abo.wanadoo.fr> has quit IRC | 09:53 | |
*** megha_dey <megha_dey!megha@nat/intel/x-wcznnzahmonhqcvf> has joined #yocto | 09:53 | |
*** geheimnis` <geheimnis`!~geheimnis@23.226.237.192> has joined #yocto | 09:54 | |
*** raykinsella78 <raykinsella78!rkinsell@nat/intel/x-aicewvotgpdhkgmk> has joined #yocto | 09:55 | |
*** aragua <aragua!~fabien@LPoitiers-656-1-79-67.w193-251.abo.wanadoo.fr> has joined #yocto | 09:55 | |
*** ap0 <ap0!2eedcbbe@gateway/web/freenode/ip.46.237.203.190> has joined #yocto | 10:01 | |
*** CTtpollard <CTtpollard!~tom@82-70-136-246.dsl.in-addr.zen.co.uk> has quit IRC | 10:02 | |
ap0 | hello. I am having trouble building yocto because of a github connection refused error. If I try to use the uri given in the receipe on command line (git clone) I get the same error. But the repository does exist with the uri and git clone works if I use https:// instead of git:// at the beginning | 10:02 |
*** hamis_lt_u <hamis_lt_u!~irfan@110.93.212.98> has quit IRC | 10:03 | |
*** hamis <hamis!~irfan@110.93.212.98> has joined #yocto | 10:04 | |
fsdun | ap0 for qt repositories? | 10:04 |
_stephan | ap0 you can use git://......;protocol=https | 10:04 |
ap0 | fsdun: no, it's this one: https://github.com/SolidRun/linux-imx6-3.14 | 10:05 |
ap0 | _stephan: thank you. will try that right now. | 10:06 |
*** CTtpollard <CTtpollard!~tom@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto | 10:06 | |
fsdun | ah. qt was on gitorious | 10:06 |
*** jku <jku!~jku@212-149-207-214.bb.dnainternet.fi> has joined #yocto | 10:06 | |
_stephan | http://git.yoctoproject.org/cgit.cgi/poky/plain/bitbake/lib/bb/fetch2/git.py <= details can be found here :) | 10:06 |
*** psnsilva <psnsilva!~psnsilva@193-126-29-154.net.novis.pt> has joined #yocto | 10:07 | |
ap0 | _stephan: thank you a lot! it atleast doesn't stop at do_fetch right away. | 10:08 |
*** Biliogadafr1 <Biliogadafr1!~User@nat2-minsk-pool-46-53-195-225.telecom.by> has joined #yocto | 10:08 | |
_stephan | you're welcome. I was a little confused by it in the beginning, too. it's quite different to git command line usage :) | 10:08 |
*** CTtpollard <CTtpollard!~tom@82-70-136-246.dsl.in-addr.zen.co.uk> has quit IRC | 10:09 | |
*** belen <belen!~Adium@192.198.151.43> has joined #yocto | 10:11 | |
*** fl0v01 <fl0v01!~fvo@p5DDC4C94.dip0.t-ipconnect.de> has joined #yocto | 10:11 | |
*** CTtpollard <CTtpollard!~tom@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto | 10:13 | |
*** psadro <psadro!~Thunderbi@216.234.148.134> has quit IRC | 10:14 | |
*** fl0v0 <fl0v0!~fvo@p5DDC6BEA.dip0.t-ipconnect.de> has quit IRC | 10:14 | |
*** townxelliot <townxelliot!~ell@176.251.36.101> has quit IRC | 10:15 | |
*** psadro <psadro!~Thunderbi@216.234.148.134> has joined #yocto | 10:15 | |
*** raykinsella781 <raykinsella781!rkinsell@nat/intel/x-fhxnqngnmjamxjit> has joined #yocto | 10:15 | |
*** raykinsella78 <raykinsella78!rkinsell@nat/intel/x-aicewvotgpdhkgmk> has quit IRC | 10:16 | |
*** tripzero2 <tripzero2!tripzero@nat/intel/x-hznzgtfwwemriunp> has joined #yocto | 10:18 | |
*** mckoan|away <mckoan|away!~marco@unaffiliated/mckoan> has quit IRC | 10:19 | |
*** captainigloo <captainigloo!~captainig@hgt68-1-78-212-24-154.fbx.proxad.net> has quit IRC | 10:19 | |
*** tripzero_ <tripzero_!~tripzero@134.134.137.73> has quit IRC | 10:19 | |
*** blueness_ <blueness_!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has quit IRC | 10:22 | |
*** captainigloo <captainigloo!~captainig@hgt68-1-78-212-24-154.fbx.proxad.net> has joined #yocto | 10:22 | |
*** alex_h <alex_h!~alex@p578a6cbb.dip0.t-ipconnect.de> has joined #yocto | 10:24 | |
*** mckoan|away <mckoan|away!~marco@host56-7-static.30-87-b.business.telecomitalia.it> has joined #yocto | 10:26 | |
*** raykinsella781 <raykinsella781!rkinsell@nat/intel/x-fhxnqngnmjamxjit> has left #yocto | 10:29 | |
*** townxelliot <townxelliot!~ell@94.13.71.131> has joined #yocto | 10:30 | |
*** manuel_ <manuel_!~manuel@p5792128A.dip0.t-ipconnect.de> has joined #yocto | 10:30 | |
*** blueness_ <blueness_!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has joined #yocto | 10:35 | |
*** nemunaire <nemunaire!~nemunaire@2a01:e35:8bb7:3c60::a> has quit IRC | 10:41 | |
*** nemunaire_ <nemunaire_!~nemunaire@ra.nemunai.re> has joined #yocto | 10:42 | |
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has joined #yocto | 10:42 | |
*** berton <berton!~fabio@177.194.219.54> has joined #yocto | 10:43 | |
*** nemunaire_ is now known as nemunaire | 10:45 | |
Ulfalizer | what's the mechanism that runs generate_index_files(d) to update the package index? i assumed something (e.g., some image bbclass) would depend on package-index.bb, but i can't find it in that case. | 10:49 |
*** blueness_ <blueness_!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has quit IRC | 10:53 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 10:56 | |
*** blueness_ <blueness_!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has joined #yocto | 11:02 | |
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has quit IRC | 11:11 | |
otavio | Is someone working at wic development here? | 11:17 |
*** blueness_ <blueness_!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has quit IRC | 11:19 | |
*** jjmb <jjmb!~jjmb@2601:46:c602:c4a0:70e6:e6ca:f709:e362> has quit IRC | 11:19 | |
*** jani <jani!~rasjani@81-175-200-183.bb.dnainternet.fi> has quit IRC | 11:20 | |
*** jjmb <jjmb!~jjmb@2601:46:c602:c4a0:70e6:e6ca:f709:e362> has joined #yocto | 11:20 | |
*** hamis_lt_u <hamis_lt_u!~irfan@110.93.212.98> has joined #yocto | 11:21 | |
*** jchonig <jchonig!~quassel@firewall.honig.net> has quit IRC | 11:25 | |
*** hamis <hamis!~irfan@110.93.212.98> has quit IRC | 11:25 | |
*** blueness_ <blueness_!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has joined #yocto | 11:26 | |
*** jonathanmaw <jonathanmaw!~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk> has quit IRC | 11:26 | |
*** jchonig <jchonig!~quassel@firewall.honig.net> has joined #yocto | 11:26 | |
*** jonathanmaw <jonathanmaw!~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto | 11:27 | |
*** vdehors <vdehors!~vincent@LAubervilliers-656-1-235-184.w193-248.abo.wanadoo.fr> has quit IRC | 11:34 | |
*** jonathanmaw <jonathanmaw!~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk> has quit IRC | 11:44 | |
*** jonathanmaw <jonathanmaw!~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk> has joined #yocto | 11:44 | |
*** edbart1 <edbart1!ebartosh@nat/intel/x-yqiynvrdxpcdyoep> has joined #yocto | 11:50 | |
*** edbart <edbart!ebartosh@nat/intel/x-souvgrzbyylpfebg> has quit IRC | 11:50 | |
-YoctoAutoBuilder- build #600 of poky-tiny is complete: Failure [failed BuildImages] Build details are at http://autobuilder.yoctoproject.org/main/builders/poky-tiny/builds/600 | 11:53 | |
*** vdehors <vdehors!~vincent@LAubervilliers-656-1-235-184.w193-248.abo.wanadoo.fr> has joined #yocto | 12:02 | |
*** Tenhi_ <Tenhi_!~tenhi@static-ip-69-64-50-196.inaddr.ip-pool.com> has quit IRC | 12:05 | |
*** tsramos <tsramos!~tsramos@134.134.137.75> has joined #yocto | 12:06 | |
*** raykinsella78 <raykinsella78!rkinsell@nat/intel/x-jtjfkbfsjgxtqqjh> has joined #yocto | 12:10 | |
*** blitz00 <blitz00!stefans@nat/intel/x-fwjryrljxicozoxr> has joined #yocto | 12:11 | |
*** blitz00 <blitz00!stefans@unaffiliated/blitz00> has joined #yocto | 12:11 | |
*** Guest54663 <Guest54663!~vivek@78.32.176.249> has joined #yocto | 12:11 | |
townxelliot | I was wondering whether there is a unique ID on each build (build name?) which could be added to each event originated by that build; is that something that exists or which has been considered? | 12:14 |
*** tsramos <tsramos!~tsramos@134.134.137.75> has quit IRC | 12:18 | |
*** tsramos <tsramos!~tsramos@192.55.54.42> has joined #yocto | 12:19 | |
*** lpapp <lpapp!~lpapp@kde/lpapp> has joined #yocto | 12:24 | |
lpapp | hi, if I am modify the kernel source in $WORKDIR/git, why do I get no compilation errors when I intentionally do some syntax error in the code? | 12:24 |
lpapp | I tried bitbake -f -c compile linux-foo | 12:25 |
lpapp | I am just trying to understand why that command comes back with no error when there is some error expected. | 12:25 |
Ulfalizer | lpapp: sure you're modifying code that's built? | 12:28 |
Ulfalizer | try the top-level makefile | 12:29 |
lpapp | yeah, I am modifying such code. | 12:29 |
Ulfalizer | check if bitbake -e linux-foo | grep WORKDIR gives the directory you expect | 12:31 |
lpapp | since I went to the source using that, the answer is yes :) | 12:31 |
lpapp | sorry for not having made that clear. | 12:31 |
Ulfalizer | ok, dunno then :/ | 12:31 |
lpapp | yeah, I had the thought of manually running make in that directory, but I do not think that is feasible for cross-building | 12:32 |
lpapp | there is probably more heuristics to it. | 12:32 |
lpapp | I am trying to build this for arm. | 12:32 |
*** ap0 <ap0!2eedcbbe@gateway/web/freenode/ip.46.237.203.190> has quit IRC | 12:35 | |
*** pidge <pidge!~pidge@2a02:8084:0:3000:945c:da35:8f83:d8ab> has joined #yocto | 12:40 | |
*** melonipoika_ <melonipoika_!~jose@194.9.252.237> has joined #yocto | 12:50 | |
Ulfalizer | is there some neat way to avoid yocto rebuilding ~everything when changing .py implementation files? | 12:51 |
Ulfalizer | for debugging purposes | 12:52 |
Ulfalizer | package_manager.py in this case | 12:52 |
*** melonipoika__ <melonipoika__!~jose@194.9.252.237> has quit IRC | 12:52 | |
*** melonipoika__ <melonipoika__!~jose@194.9.252.237> has joined #yocto | 12:55 | |
*** vdehors__ <vdehors__!~vdehors@bob75-2-81-56-46-209.fbx.proxad.net> has joined #yocto | 12:56 | |
*** melonipoika_ <melonipoika_!~jose@194.9.252.237> has quit IRC | 12:59 | |
*** Guest54663 <Guest54663!~vivek@78.32.176.249> has quit IRC | 12:59 | |
*** vdehors_ <vdehors_!~vdehors@193.56.60.161> has quit IRC | 12:59 | |
*** seebs_ <seebs_!~seebs@home.seebs.net> has joined #yocto | 13:11 | |
*** blueness_ <blueness_!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has quit IRC | 13:11 | |
*** tsramos_ <tsramos_!tsramos@nat/intel/x-gzywasbbgvjxnsxb> has joined #yocto | 13:13 | |
*** darkspike <darkspike!6cab81a3@gateway/web/freenode/ip.108.171.129.163> has joined #yocto | 13:14 | |
*** igor3 <igor3!~Igor_Stop@134.134.137.71> has joined #yocto | 13:14 | |
*** blueness_ <blueness_!~blueness@cpe-74-77-145-97.buffalo.res.rr.com> has joined #yocto | 13:14 | |
*** alimon11 <alimon11!~alimon@192.55.54.43> has joined #yocto | 13:15 | |
*** seebs <seebs!~seebs@home.seebs.net> has quit IRC | 13:15 | |
*** tsramos <tsramos!~tsramos@192.55.54.42> has quit IRC | 13:15 | |
*** alimon1 <alimon1!~alimon@192.55.54.43> has quit IRC | 13:15 | |
*** igor1 <igor1!Igor_Stopp@nat/intel/x-lebwxbnidvrdikhs> has quit IRC | 13:15 | |
*** Ulfalizer <Ulfalizer!~ulf@217.89.178.116> has quit IRC | 13:23 | |
darkspike | Hi All, I am trying to make an image recipe that installs just one package. We have a multi-partition embedded system. At the moment I am getting a lot of other packages that i don't need, besides the one that i have. Is there a way to make such an image recipe ? | 13:23 |
*** tasslehoff <tasslehoff!~Tasslehof@77.40.182.98> has quit IRC | 13:30 | |
*** lamego <lamego!jose@nat/intel/x-sbeoagjfmecfenxc> has joined #yocto | 13:43 | |
*** Guest54663 <Guest54663!~vivek@pakora.collabora.co.uk> has joined #yocto | 13:44 | |
*** belen <belen!~Adium@192.198.151.43> has quit IRC | 13:49 | |
*** joshuagl <joshuagl!~joshuagl@192.198.151.43> has quit IRC | 13:49 | |
-YoctoAutoBuilder- build #582 of buildtools is complete: Failure [failed BuildImages] Build details are at http://autobuilder.yoctoproject.org/main/builders/buildtools/builds/582 | 13:50 | |
*** RP <RP!~richard@5751f4a1.skybroadband.com> has quit IRC | 13:56 | |
*** RP <RP!~richard@5751f4a1.skybroadband.com> has joined #yocto | 13:56 | |
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has joined #yocto | 13:59 | |
*** darkspike <darkspike!6cab81a3@gateway/web/freenode/ip.108.171.129.163> has quit IRC | 13:59 | |
*** dotb <dotb!4a6e9028@gateway/web/freenode/ip.74.110.144.40> has joined #yocto | 14:03 | |
dotb | Good morning! I have a quick question about PACKAGECONFIG, it seems most parameters are set using this notation: PACKAGECONFIG[udev] = "-libudev,-no-libudev,udev" | 14:04 |
dotb | or similar, what is the logic to -set -unset -set again? | 14:04 |
*** Guest54663 is now known as fledermaus | 14:06 | |
Crofton|work | dotb, What exactly are you asking again? | 14:06 |
dotb | I saw a similar question raised in the mailing list https://lists.yoctoproject.org/pipermail/yocto/2013-November/016969.html | 14:07 |
Crofton|work | I'm not sure what isn't clear | 14:08 |
dotb | Basically, I want to add the icu feature to meta-qt, PACKAGECONFIG[icu] = "-icu,-no-icu,icu" | 14:08 |
dotb | Well, syntax for packageconfig is bit inwieldly to understand at first, I'm trying to figure out how I could enable the icu feature, in the meta-qt layer. Do I just modify the meta-qt package or do I create a bbappend file? Also I saw confusion regarding ??= ?= and += | 14:10 |
Crofton|work | make sure you need something like PACKAGECONFIG_pn_gnuradio_append = "icu" | 14:11 |
Crofton|work | I'm hunting for exact synatx | 14:11 |
Crofton|work | in local.conf | 14:11 |
Crofton|work | or you can also use bbappend | 14:11 |
Crofton|work | > in my local.conf: | 14:12 |
Crofton|work | > PACKAGECONFIG_pn-vlc_append = " libva" | 14:12 |
dotb | Crofton|work: Thank you, testing it out now. | 14:13 |
Crofton|work | You can use bitbake -e foo | grep ^PACKAGECONFIG to see what the var gets set to | 14:14 |
Crofton|work | I think :) | 14:14 |
*** justanotherboy <justanotherboy!mlopezva@nat/intel/x-pfphzucadvqdygjp> has joined #yocto | 14:19 | |
*** AndersD <AndersD!~anders@h83-209-191-235.dynamic.se.alltele.net> has quit IRC | 14:19 | |
*** belen <belen!~Adium@134.134.139.77> has joined #yocto | 14:20 | |
*** psnsilva <psnsilva!~psnsilva@193-126-29-154.net.novis.pt> has quit IRC | 14:20 | |
*** joshuagl <joshuagl!~joshuagl@192.198.151.43> has joined #yocto | 14:24 | |
*** ylouise <ylouise!~yalouise@134.134.139.77> has left #yocto | 14:28 | |
*** gferencz <gferencz!~gferencz@173.225.52.242> has joined #yocto | 14:30 | |
*** _stephan <_stephan!~stephan@p4FE04CA9.dip0.t-ipconnect.de> has quit IRC | 14:33 | |
*** arfoll <arfoll!~bl73@97e2b5c5.skybroadband.com> has joined #yocto | 14:47 | |
*** edbart1 <edbart1!ebartosh@nat/intel/x-yqiynvrdxpcdyoep> has quit IRC | 14:49 | |
*** alex_h <alex_h!~alex@p578a6cbb.dip0.t-ipconnect.de> has quit IRC | 14:49 | |
*** edbart <edbart!ebartosh@nat/intel/x-dodfvgsrvsxtszop> has joined #yocto | 14:49 | |
*** kratsg <kratsg!82c703a5@gateway/web/freenode/ip.130.199.3.165> has joined #yocto | 14:55 | |
kratsg | Hi all -- looking at this: http://layers.openembedded.org/layerindex/branch/master/recipes/?q=yaml | 14:55 |
kratsg | i noticed that meta-python has 3.10 and some other locations have 3.11 -- what do I need to do to make sure a recipe is using 3.11? Do I need to add the custom layer in my conf.bb or make sure that the LAYERDEPENDS has the correct layer dependencies? | 14:56 |
* Crofton|work rages against layers that duplicate recipes again | 14:59 | |
*** belen1 <belen1!Adium@nat/intel/x-kjsolymzrgdfetua> has joined #yocto | 14:59 | |
Crofton|work | basically, I suggest submitting the update to meta-python and ignoring meta-ros and meta-virtualization | 14:59 |
*** belen <belen!~Adium@134.134.139.77> has quit IRC | 15:00 | |
*** jku <jku!~jku@212-149-207-214.bb.dnainternet.fi> has quit IRC | 15:01 | |
*** madisox <madisox!~madison@12.30.244.5> has joined #yocto | 15:01 | |
joseppc | Crofton|work: some packages in meta-virt require that version, it's hard to make everybody happy :) | 15:04 |
Crofton|work | ok, I know meta-virt is sort of special, but they could at least submit the update to meta-python | 15:05 |
*** rob_w <rob_w!~bob@unaffiliated/rob-w/x-1112029> has quit IRC | 15:05 | |
kratsg | I don't see why both versions couldn't exist in meta-python. | 15:05 |
Crofton|work | it just looks bad to see the same recipe maintained in three layers | 15:05 |
kratsg | The only reason 3.11 exists, as far as I can tell, is just an update against the latest libyaml and compilers. | 15:06 |
kratsg | I also sent an email a while ago about trying to get a recipe working (it has a lot of compilation errors) with bitbake, but I've gotten no helpful responses yet :( | 15:06 |
joseppc | Crofton|work: true, I agree | 15:06 |
Crofton|work | kratsg, what recipe? | 15:06 |
kratsg | https://github.com/kratsg/meta-l1calo/blob/master/recipes-core/root/root_6.04.12.bb | 15:07 |
kratsg | It's one that I'm trying to develop to use ROOT on an embedded board. | 15:07 |
kratsg | However, I run into a lot of Fortran and CMake problems. | 15:07 |
kratsg | (with C++11 support and so on) | 15:07 |
* Crofton|work curses FORTRAN :) | 15:07 | |
kratsg | The log is here: https://gist.github.com/kratsg/cd3184a167676eb69067 | 15:07 |
kratsg | (note that this is a layer, so you can easily check it out, update an image to depend on "root" and then try to compile it yourself with bitbake :-/) | 15:08 |
kratsg | and here is CMakeError.log https://gist.github.com/anonymous/adec2839deecce33702a | 15:08 |
Crofton|work | | LLVM requires C++11 support but the '-std=c++11' flag isn't supported. | 15:09 |
Crofton|work | look suspicious | 15:09 |
kratsg | Yeah, it's really suspicious. I use CMake with this version of ROOT to get it on my computer, so I have no reason to think it would break inside bitbake :-/ | 15:09 |
kratsg | [it's very recent too!] | 15:09 |
*** cference <cference!~cference@74-93-0-221-SFBA.hfc.comcastbusiness.net> has joined #yocto | 15:10 | |
kratsg | I've attempted to try and replace it with a newer version of LLVM, but not sure | 15:11 |
Crofton|work | or think the llvm expert is asleep | 15:15 |
Crofton|work | I think we have a couple of llvm versions you could try,m | 15:15 |
kratsg | yeah, the really strange part is that ROOT does come with LLVM support internally and can use that | 15:16 |
kratsg | but it tends to always default to an external one | 15:16 |
*** munch_ <munch_!~mark@c-50-129-137-132.hsd1.il.comcast.net> has joined #yocto | 15:17 | |
*** munch_ is now known as Guest60301 | 15:17 | |
kratsg | https://root.cern.ch/building-root | 15:17 |
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has quit IRC | 15:20 | |
*** jjmb <jjmb!~jjmb@2601:46:c602:c4a0:70e6:e6ca:f709:e362> has quit IRC | 15:20 | |
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has joined #yocto | 15:21 | |
*** raykinsella78 <raykinsella78!rkinsell@nat/intel/x-jtjfkbfsjgxtqqjh> has left #yocto | 15:23 | |
*** mwarning <mwarning!~mwarning@business-213-023-255-127.static.arcor-ip.net> has joined #yocto | 15:24 | |
*** mwarning <mwarning!~mwarning@business-213-023-255-127.static.arcor-ip.net> has left #yocto | 15:24 | |
*** vdehors_ <vdehors_!~vincent@LAubervilliers-656-1-235-184.w193-248.abo.wanadoo.fr> has joined #yocto | 15:25 | |
*** vdehors <vdehors!~vincent@LAubervilliers-656-1-235-184.w193-248.abo.wanadoo.fr> has quit IRC | 15:25 | |
*** vdehors_ <vdehors_!~vincent@LAubervilliers-656-1-235-184.w193-248.abo.wanadoo.fr> has joined #yocto | 15:26 | |
*** Tenhi_ <Tenhi_!~tenhi@69.64.50.196> has joined #yocto | 15:26 | |
*** belen1 <belen1!Adium@nat/intel/x-kjsolymzrgdfetua> has quit IRC | 15:33 | |
*** belen <belen!Adium@nat/intel/x-kiaxxcaosancrklv> has joined #yocto | 15:33 | |
*** dotb <dotb!4a6e9028@gateway/web/freenode/ip.74.110.144.40> has quit IRC | 15:36 | |
*** joseppc <joseppc!~Josep@sestofw01.enea.se> has quit IRC | 15:37 | |
*** belen <belen!Adium@nat/intel/x-kiaxxcaosancrklv> has quit IRC | 15:37 | |
*** cference <cference!~cference@74-93-0-221-SFBA.hfc.comcastbusiness.net> has quit IRC | 15:43 | |
*** joseppc <joseppc!~Josep@sestofw01.enea.se> has joined #yocto | 15:46 | |
*** belen <belen!~Adium@134.134.139.77> has joined #yocto | 15:48 | |
*** pericynthion <pericynthion!42c93fe2@gateway/web/freenode/ip.66.201.63.226> has quit IRC | 15:48 | |
-YoctoAutoBuilder- build #246 of ptest-x86-64 is complete: Failure [failed BuildImages] Build details are at http://autobuilder.yoctoproject.org/main/builders/ptest-x86-64/builds/246 | 15:49 | |
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has quit IRC | 15:50 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto | 15:52 | |
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has joined #yocto | 15:53 | |
*** benjamirc <benjamirc!besquive@nat/intel/x-cttrdmqcpqienwtp> has joined #yocto | 15:53 | |
-YoctoAutoBuilder- build #610 of nightly-x86-64 is complete: Failure [failed Building Toolchain Images Running SDK Sanity Tests Building Toolchain Images_1 Running SDK Sanity Tests_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-x86-64/builds/610 | 15:55 | |
*** joshuagl <joshuagl!~joshuagl@192.198.151.43> has quit IRC | 15:56 | |
*** vmeson <vmeson!~rmacleod@24-212-184-107.cable.teksavvy.com> has quit IRC | 15:59 | |
*** benjamirc <benjamirc!besquive@nat/intel/x-cttrdmqcpqienwtp> has quit IRC | 16:00 | |
*** manuel__ <manuel__!~manuel@p57921847.dip0.t-ipconnect.de> has joined #yocto | 16:02 | |
*** manuel_ <manuel_!~manuel@p5792128A.dip0.t-ipconnect.de> has quit IRC | 16:04 | |
*** manuel__ is now known as manuel_ | 16:04 | |
*** joshuagl <joshuagl!~joshuagl@192.198.151.36> has joined #yocto | 16:11 | |
*** tsramos_ <tsramos_!tsramos@nat/intel/x-gzywasbbgvjxnsxb> has quit IRC | 16:14 | |
*** tsramos <tsramos!~tsramos@192.55.54.42> has joined #yocto | 16:16 | |
*** hamis_lt_u <hamis_lt_u!~irfan@110.93.212.98> has quit IRC | 16:18 | |
*** hanthings_ <hanthings_!~hanthings@dyxztkygvy66b0zhv7lkt-3.rev.dnainternet.fi> has joined #yocto | 16:18 | |
wyrm | nerdboy: Server problems. With dhcpd. | 16:19 |
*** frsc <frsc!~frsc@80.149.173.67> has quit IRC | 16:19 | |
*** TobSnyder1 <TobSnyder1!~schneider@146.52.80.242> has quit IRC | 16:20 | |
*** tsramos <tsramos!~tsramos@192.55.54.42> has quit IRC | 16:20 | |
*** sjolley <sjolley!~sjolley@134.134.137.75> has quit IRC | 16:22 | |
*** vmeson <vmeson!~rmacleod@128.224.252.2> has joined #yocto | 16:25 | |
*** benjamirc <benjamirc!~besquive@134.134.137.75> has joined #yocto | 16:25 | |
*** chep <chep!~chep@149.165.146.77.rev.sfr.net> has quit IRC | 16:27 | |
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has quit IRC | 16:29 | |
*** geotoad <geotoad!4fad9634@gateway/web/freenode/ip.79.173.150.52> has joined #yocto | 16:29 | |
geotoad | Trying to compile something in Poky with "make install" and get "make: /usr/bin/install: Command not found". Any idea what's going on? | 16:30 |
kergoth | does your build machine not have the install command? | 16:31 |
kergoth | oh, you're compiling on target? | 16:31 |
rburton | either way, checking that /usr/bin/install exists seems like a good start | 16:32 |
kergoth | /usr/bin/install comes from coreutils. if you don't have that, then your device is nowhere near equipped to do development | 16:32 |
geotoad | I'm trying to get dtc installed using instructions lines 73-76 here: https://github.com/01org/edison-u-boot/blob/master/doc/README.fdt-control | 16:32 |
*** csanchezdll <csanchezdll!~user@galileo.kdpof.com> has quit IRC | 16:33 | |
geotoad | installing coreutils | 16:33 |
geotoad | worked :) | 16:33 |
geotoad | Hmm "make install" seemed to work but not "dtc: not found" | 16:36 |
geotoad | 1 | 16:37 |
*** kratsg <kratsg!82c703a5@gateway/web/freenode/ip.130.199.3.165> has left #yocto | 16:37 | |
geotoad | Any idea how to install dtc library on Poky? | 16:46 |
*** bluelightning <bluelightning!~paul@2406:e007:44a7:1:5e51:4fff:febb:401d> has joined #yocto | 16:51 | |
*** bluelightning <bluelightning!~paul@2406:e007:44a7:1:5e51:4fff:febb:401d> has quit IRC | 16:51 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 16:51 | |
*** aehs29 <aehs29!~aehernan@134.134.139.77> has joined #yocto | 16:52 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 16:53 | |
*** nerdboy <nerdboy!~sarnold@gatekeeper.gentoogeek.org> has joined #yocto | 16:54 | |
*** nerdboy <nerdboy!~sarnold@gentoo/developer/nerdboy> has joined #yocto | 16:54 | |
*** sjolley <sjolley!sjolley@nat/intel/x-txpzcapmccihgcnp> has joined #yocto | 16:56 | |
geotoad | Hello Yoctocentti - anyone know how to install device-tree-compiler on a working Poki? | 16:56 |
*** yann|work <yann|work!~yann@LFbn-1-1026-146.w86-247.abo.wanadoo.fr> has quit IRC | 16:57 | |
*** chep <chep!~chep@149.165.146.77.rev.sfr.net> has joined #yocto | 17:03 | |
*** roccof <roccof!~roccof@93.51.177.218> has quit IRC | 17:05 | |
-YoctoAutoBuilder- build #589 of nightly-oecore is complete: Success [build successful] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-oecore/builds/589 | 17:08 | |
*** dvhart <dvhart!dvhart@nat/intel/x-trarnryjxgehnckw> has joined #yocto | 17:09 | |
*** mattsm <mattsm!uid128834@gateway/web/irccloud.com/x-bxnaqmxsociuuuid> has joined #yocto | 17:10 | |
*** chep <chep!~chep@149.165.146.77.rev.sfr.net> has quit IRC | 17:10 | |
wyrm | geotoad: Looks like you probably just install the dtc package. http://git.yoctoproject.org/cgit.cgi/poky/plain/meta/recipes-kernel/dtc/ | 17:15 |
*** lpapp <lpapp!~lpapp@kde/lpapp> has quit IRC | 17:15 | |
*** hanthings_ <hanthings_!~hanthings@dyxztkygvy66b0zhv7lkt-3.rev.dnainternet.fi> has quit IRC | 17:16 | |
*** chep <chep!~chep@149.165.146.77.rev.sfr.net> has joined #yocto | 17:19 | |
*** fl0v01 <fl0v01!~fvo@p5DDC4C94.dip0.t-ipconnect.de> has quit IRC | 17:19 | |
*** edbart <edbart!ebartosh@nat/intel/x-dodfvgsrvsxtszop> has quit IRC | 17:21 | |
*** edbart <edbart!ebartosh@nat/intel/x-dxcdkiltotvuiigz> has joined #yocto | 17:22 | |
*** soderstrom <soderstrom!~soderstro@c-9489e555.015-59-6c6b7013.cust.bredbandsbolaget.se> has joined #yocto | 17:22 | |
sgw_ | armpit: did you see Robert's email regarding the libxml and libssl CVE patchset failures? Seems 2 of the patches might have been corrupted. | 17:28 |
*** blitz00 <blitz00!stefans@unaffiliated/blitz00> has quit IRC | 17:29 | |
geotoad | wyrm: Thanks. Do you know how I can install that on a working system? Not so familiar with Yocto.. | 17:30 |
wyrm | Honesly, no. I've been focusing on building things with bitbake when setting up a system, and then treating it as static afterward. | 17:32 |
wyrm | Package management within a running system is not in my skillset yet. | 17:33 |
-YoctoAutoBuilder- build #603 of nightly-ppc is complete: Failure [failed Building Toolchain Images Running SDK Sanity Tests Building Toolchain Images_1 Running SDK Sanity Tests_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-ppc/builds/603 | 17:34 | |
nerdboy | if you have package manager on the system just copy the package over and install | 17:34 |
nerdboy | or unpack package manually and copy files | 17:35 |
geotoad | nerdboy: I only have opkg. know if I can point it to the URL or something? | 17:40 |
khem | rburton: yt ? | 17:40 |
rburton | khem: vaguely. what's up? | 17:41 |
*** armpit <armpit!~akuster@2601:202:4000:1239:9ca2:2131:a4c0:cdbd> has quit IRC | 17:43 | |
khem | rburton: when is your pull request gonna land any idea ? | 17:44 |
khem | I have phase4 lining up | 17:44 |
khem | this will be last big one | 17:44 |
khem | then after that it will be smaller increments | 17:45 |
nerdboy | opkg will work if you have an ipk | 17:45 |
nerdboy | or you could try this: | 17:45 |
nerdboy | wget -c https://github.com/hephaex/toolchain/tree/master/arm/dtc.sh | 17:45 |
nerdboy | make it executable and run it | 17:46 |
geotoad | nerdboy: that repo looks incompatible - uses apt-get | 17:50 |
rburton | khem: next mut will have it in | 17:51 |
*** LocutusOfBorg <LocutusOfBorg!~Gianfranc@2.238.240.162> has quit IRC | 17:51 | |
nerdboy | then you'll need to bitbake dtc and copy it over | 17:54 |
*** vdehors_ <vdehors_!~vincent@LAubervilliers-656-1-235-184.w193-248.abo.wanadoo.fr> has quit IRC | 17:55 | |
nerdboy | opkg can install from package feed but you'd need to have a web server serving up the feed url | 17:55 |
*** armpit <armpit!~akuster@2601:202:4000:1239:4dd9:ed7e:92c:d841> has joined #yocto | 17:56 | |
nerdboy | just scp/rsync the .ipk file and do "opkg install foo.ipk" | 17:56 |
*** sjolley <sjolley!sjolley@nat/intel/x-txpzcapmccihgcnp> has quit IRC | 17:56 | |
*** jbrianceau is now known as jbrianceau_away | 17:59 | |
*** agust <agust!~agust@217.226.250.150> has joined #yocto | 18:02 | |
*** sjolley <sjolley!sjolley@nat/intel/x-lfefxgiyidvbbkdm> has joined #yocto | 18:03 | |
geotoad | nerdboy: thanks that's useful. Not sure where to get the dtc idk though.. | 18:03 |
geotoad | * .ipk.. | 18:03 |
*** jonathanmaw <jonathanmaw!~jonathanm@82-70-136-246.dsl.in-addr.zen.co.uk> has quit IRC | 18:04 | |
*** RP <RP!~richard@5751f4a1.skybroadband.com> has quit IRC | 18:04 | |
*** RP <RP!~richard@5751f4a1.skybroadband.com> has joined #yocto | 18:05 | |
nerdboy | build it with bitbake | 18:06 |
nerdboy | build-imx233mini/tmp/deploy/ipk/armv5e/dtc_1.4.1+git0+302fca9f4c-r0_armv5e.ipk | 18:06 |
geotoad | Ah I see. Alas I already have a build I have to work with. It's a mature project.. | 18:07 |
nerdboy | in that build env try "bitbake dtc" | 18:07 |
geotoad | Holy cr*p this is turning out to be hard work | 18:20 |
geotoad | How can it be so difficult to install a library.. | 18:20 |
*** obsrwr <obsrwr!~obsrwr@188.24.212.34> has joined #yocto | 18:22 | |
wyrm | So, hey, nerdboy... You asked about my dhcpd problem. So, The bitbake-built version (in Jethro) starts fine and works fine, but when I try to stop it, it fails to stop. The normal way of terminating dhcpd is to send it a sigterm, but the handler just returns and dhcpd keeps running. | 18:27 |
wyrm | If I copy the sources into the running system and build it there, it starts, runs, and stops just like it's supposed to. | 18:28 |
*** radhus <radhus!~radhus@sevh.radhuset.org> has quit IRC | 18:28 | |
*** radhus <radhus!~radhus@sevh.radhuset.org> has joined #yocto | 18:29 | |
wyrm | The last build I did of Fido didn't have this behavior. So, I went through the git logs and couldn't find any likely causes of that change in behavior. Now, I'm selectively applying the package's patches trying to recreate the problem. | 18:32 |
wyrm | Any other thoughts or suggestions on how to troubleshoot this? | 18:32 |
-YoctoAutoBuilder- build #244 of nightly-mips64 is complete: Failure [failed Building Toolchain Images Running SDK Sanity Tests Building Toolchain Images_1 Running SDK Sanity Tests_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-mips64/builds/244 | 18:33 | |
nerdboy | not really, i have local dnsmasq for that | 18:34 |
nerdboy | don't normally try to run a server on embedded stuff | 18:34 |
*** townxelliot <townxelliot!~ell@94.13.71.131> has quit IRC | 18:35 | |
geotoad | nerdboy: thanks for your help dude | 18:35 |
geotoad | ciao | 18:35 |
*** geotoad <geotoad!4fad9634@gateway/web/freenode/ip.79.173.150.52> has quit IRC | 18:35 | |
*** sledges <sledges!~sleleiva@unaffiliated/sledgeas> has quit IRC | 18:40 | |
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has joined #yocto | 18:46 | |
wyrm | I might jump ship over to DHCP subsystem of dnsmasq. I'm not quite ready to run up the white flag yet, though. | 18:53 |
*** hanthings_ <hanthings_!~hanthings@dyxztkygvy66b0zhv7lkt-3.rev.dnainternet.fi> has joined #yocto | 18:56 | |
*** cbzx <cbzx!~cbzx@CPE0015f275ecd5-CM00195edd810c.cpe.net.cable.rogers.com> has joined #yocto | 18:59 | |
*** tsramos <tsramos!~tsramos@134.134.137.71> has joined #yocto | 19:00 | |
nerdboy | wyrm: try upping the debug level on the server side? maybe run it in the foreground with strace? | 19:02 |
*** belen <belen!~Adium@134.134.139.77> has quit IRC | 19:04 | |
-YoctoAutoBuilder- build #608 of nightly-arm is complete: Failure [failed Building Toolchain Images Running SDK Sanity Tests Building Toolchain Images_1 Running SDK Sanity Tests_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-arm/builds/608 | 19:05 | |
*** gferencz <gferencz!~gferencz@173.225.52.242> has quit IRC | 19:10 | |
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto | 19:11 | |
*** Jefro <Jefro!~jefro@50-0-152-82.dedicated.static.sonic.net> has joined #yocto | 19:15 | |
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has quit IRC | 19:16 | |
*** hanthings_ <hanthings_!~hanthings@dyxztkygvy66b0zhv7lkt-3.rev.dnainternet.fi> has quit IRC | 19:18 | |
-YoctoAutoBuilder- build #584 of nightly-fsl-ppc is complete: Failure [failed Building Toolchain Images Building Toolchain Images_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-fsl-ppc/builds/584 | 19:20 | |
*** t0mmy <t0mmy!~tprrt@217.114.201.133> has quit IRC | 19:24 | |
*** edbart <edbart!ebartosh@nat/intel/x-dxcdkiltotvuiigz> has quit IRC | 19:24 | |
wyrm | nerdboy: I did use strace. That's how I found that the signal handler was just returning in the broken version, instead of allowing the server to exit. | 19:29 |
wyrm | The funny thing is that I can't seem to reproduce it with a hand-compiled copy. Not even with all the Poky patches applied. | 19:30 |
wyrm | Also, I'm glad I had to type that insead of saying it. "Poky patches applied" seems like a good tongue twister. | 19:31 |
*** joshuagl <joshuagl!~joshuagl@192.198.151.36> has quit IRC | 19:31 | |
-YoctoAutoBuilder- build #597 of nightly-mips is complete: Failure [failed Building Toolchain Images Running SDK Sanity Tests Building Toolchain Images_1 Running SDK Sanity Tests_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-mips/builds/597 | 19:32 | |
*** Jefro1 <Jefro1!~jefro@50-0-152-82.dedicated.static.sonic.net> has joined #yocto | 19:33 | |
*** Jefro <Jefro!~jefro@50-0-152-82.dedicated.static.sonic.net> has quit IRC | 19:33 | |
*** dvhart <dvhart!dvhart@nat/intel/x-trarnryjxgehnckw> has quit IRC | 19:35 | |
nerdboy | wyrm: you didn't get any configure warnings did you? | 19:37 |
nerdboy | try comparing config.log from the two builds? | 19:37 |
*** jjmb <jjmb!~jjmb@69.241.19.12> has joined #yocto | 19:39 | |
*** morphis <morphis!~morphis@pD9ED7667.dip0.t-ipconnect.de> has quit IRC | 19:40 | |
*** jjmb <jjmb!~jjmb@69.241.19.12> has quit IRC | 19:42 | |
*** t0mmy <t0mmy!~tprrt@ram31-2-82-228-88-46.fbx.proxad.net> has joined #yocto | 19:45 | |
*** hanthings_ <hanthings_!~hanthings@dyxztkygvy66b0zhv7lkt-3.rev.dnainternet.fi> has joined #yocto | 19:47 | |
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has joined #yocto | 19:50 | |
*** paulg <paulg!~paulg@209.29.74.150> has joined #yocto | 19:53 | |
*** khem` is now known as onoffon | 19:57 | |
*** onoffon is now known as khem` | 19:57 | |
*** jjmb <jjmb!~jjmb@69.241.19.12> has joined #yocto | 19:59 | |
wyrm | Well, if I hand-compile with --with-libbind (which the bitbake recipe uses), ./configure finishes fine but make fails. | 20:04 |
wyrm | | In file included from ../includes/dhcpd.h:91:0, | 20:04 |
wyrm | | from alloc.c:30: | 20:04 |
wyrm | | ../includes/omapip/isclib.h:51:24: fatal error: isc/buffer.h: No such file or directory | 20:04 |
*** igor3 <igor3!~Igor_Stop@134.134.137.71> has quit IRC | 20:05 | |
wyrm | Without --with-libbind, ./configure and make succeed, and dhcpd runs and stops correctly. | 20:05 |
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-xkkamixmhucrqfrx> has quit IRC | 20:05 | |
wyrm | However! Since you mentioned it, I looked, and yes. The hand-compiled version does produce an error when it tries to build conftest.c | 20:06 |
wyrm | That doesn't seem to impair the build process, though. | 20:07 |
* zeddii has no context. but wyrm .. what branch are you using ? and what was the target ? | 20:07 | |
*** Jefro1 <Jefro1!~jefro@50-0-152-82.dedicated.static.sonic.net> has quit IRC | 20:08 | |
*** igor1 <igor1!Igor_Stopp@nat/intel/x-rlauagyyswlqcyok> has joined #yocto | 20:08 | |
*** Jefro <Jefro!~jefro@50-0-152-82.dedicated.static.sonic.net> has joined #yocto | 20:09 | |
paulg | are any of these headers even kernel headers? | 20:09 |
*** behanw <behanw!~behanw@2001:470:b26c:0:8d90:f9f2:ff5c:8550> has quit IRC | 20:09 | |
wyrm | zeddii: Upgrading from Fido to Jethro. The target is ... fsl-multimedia-image-full. | 20:11 |
*** khem` is now known as onoffon | 20:12 | |
wyrm | The package in question is dhcp. Under fido, dhcpd-4.3.1 built, ran, and stopped correctly. Under jethro, dhpcd-4.3.2 builds and runs, but won't stop on a SIGTERM. | 20:12 |
wyrm | I can hand-compile dhcpd-4.3.2 and it will build, run, and stop correctly. I can't seem to re-create the error by hand. | 20:13 |
zeddii | it is worth checking to see if prelink is in play. I've had it corrupt my binaries in the past (but it should all be fixed in master), which meant that when I built by hand, everything worked. | 20:14 |
-YoctoAutoBuilder- build #607 of nightly-x86 is complete: Failure [failed Building Toolchain Images Running SDK Sanity Tests Building Toolchain Images_1 Running SDK Sanity Tests_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-x86/builds/607 | 20:14 | |
*** yann|work <yann|work!~yann@nan92-1-81-57-214-146.fbx.proxad.net> has joined #yocto | 20:15 | |
wyrm | I just used a bbappend to remove the --with-libbind option, and I'm trying to eliminate the error that way (since that was the one thing I couldn't do by hand). | 20:16 |
wyrm | But prelinking works perfectly all the time! | 20:16 |
wyrm | ... | 20:16 |
wyrm | I'll look. | 20:16 |
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has quit IRC | 20:20 | |
*** berton <berton!~fabio@177.194.219.54> has quit IRC | 20:20 | |
fray | definitely rebuild w/ prelinking off.. (disabling prelink only affects the image generation, so it's quick trial process) | 20:23 |
fray | if you can find a reproducible problem, please file a bug and let me know.. | 20:23 |
fray | otherwise, I'd say it's likely "something else", some kind of contamination in the build | 20:23 |
-YoctoAutoBuilder- build #593 of nightly-fsl-arm-lsb is complete: Failure [failed BuildImages BuildImages_1 BuildImages_2] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-fsl-arm-lsb/builds/593 | 20:24 | |
wyrm | Yep. Prelinking is enabled. I'll disable that and try again once it's done doing the build it's doing now. | 20:26 |
fray | (you can also unprelink the one binary, on the target, if you have the target prelink recipe included in your image) | 20:27 |
paulg | unprelink? That sounds like an automatic language fine of $2 right there.... :) | 20:29 |
wyrm | Nope. I don't. | 20:36 |
wyrm | So, I rebuild. | 20:36 |
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has joined #yocto | 20:39 | |
*** mr_science <mr_science!~sarnold@gatekeeper.gentoogeek.org> has joined #yocto | 20:40 | |
*** mr_science <mr_science!~sarnold@gentoo/developer/nerdboy> has joined #yocto | 20:40 | |
*** toscalix <toscalix!~agustinbe@149.100.1.50> has quit IRC | 20:45 | |
*** paulg <paulg!~paulg@209.29.74.150> has quit IRC | 20:46 | |
-YoctoAutoBuilder- build #243 of nightly-arm64 is complete: Failure [failed Building Toolchain Images Running SDK Sanity Tests Building Toolchain Images_1 Running SDK Sanity Tests_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-arm64/builds/243 | 20:54 | |
*** karobar <karobar!4432d82d@gateway/web/freenode/ip.68.50.216.45> has joined #yocto | 21:01 | |
karobar | does anyone know why an autotools-inheriting recipe would have oe_runconf fail but the configure exit 0? | 21:05 |
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has quit IRC | 21:09 | |
*** joshuagl <joshuagl!~joshuagl@192.198.151.44> has joined #yocto | 21:09 | |
*** cbzx <cbzx!~cbzx@CPE0015f275ecd5-CM00195edd810c.cpe.net.cable.rogers.com> has quit IRC | 21:14 | |
*** ant_home <ant_home!~ant__@host48-23-dynamic.14-87-r.retail.telecomitalia.it> has joined #yocto | 21:16 | |
-YoctoAutoBuilder- build #611 of nightly-x86-64-lsb is complete: Failure [failed BuildImages Running Sanity Tests BuildImages_1] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-x86-64-lsb/builds/611 | 21:20 | |
*** Biliogadafr1 <Biliogadafr1!~User@nat2-minsk-pool-46-53-195-225.telecom.by> has quit IRC | 21:22 | |
*** vmeson <vmeson!~rmacleod@128.224.252.2> has quit IRC | 21:24 | |
*** fledermaus <fledermaus!~vivek@pakora.collabora.co.uk> has quit IRC | 21:24 | |
*** soderstrom <soderstrom!~soderstro@c-9489e555.015-59-6c6b7013.cust.bredbandsbolaget.se> has quit IRC | 21:29 | |
-YoctoAutoBuilder- build #599 of nightly-world is complete: Failure [failed BuildImages] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-world/builds/599 | 21:30 | |
*** tsramos <tsramos!~tsramos@134.134.137.71> has quit IRC | 21:32 | |
*** tsramos <tsramos!~tsramos@134.134.137.71> has joined #yocto | 21:32 | |
*** onoffon <onoffon!~khem@unaffiliated/khem> has quit IRC | 21:32 | |
*** tsramos <tsramos!~tsramos@134.134.137.71> has quit IRC | 21:42 | |
Marex | meh | 21:42 |
Marex | updating U-Boot to 2016.01 produces some weird problems | 21:42 |
Marex | can someone please explain to me what does EXTRA_OEMAKE_class-target and EXTRA_OEMAKE_class-cross mean ? | 21:43 |
Marex | more like what is the difference between "target" and "cross" | 21:43 |
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-gymmoyvwrnhwntrx> has joined #yocto | 21:44 | |
*** agust <agust!~agust@217.226.250.150> has quit IRC | 21:44 | |
*** dv_ <dv_!~quassel@chello062178118086.5.14.vie.surfer.at> has quit IRC | 21:46 | |
*** behanw <behanw!~behanw@2001:470:b26c:0:5983:2eb8:d89f:df7a> has joined #yocto | 21:46 | |
*** dv_ <dv_!~quassel@chello062178118086.5.14.vie.surfer.at> has joined #yocto | 21:48 | |
*** hanthings_ <hanthings_!~hanthings@dyxztkygvy66b0zhv7lkt-3.rev.dnainternet.fi> has quit IRC | 21:54 | |
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has joined #yocto | 22:05 | |
*** pohly <pohly!~pohly@p5DE8F0DE.dip0.t-ipconnect.de> has quit IRC | 22:12 | |
*** fledermaus <fledermaus!~vivek@78.32.176.249> has joined #yocto | 22:16 | |
*** khem` <khem`!~khem@unaffiliated/khem> has joined #yocto | 22:16 | |
*** sjolley <sjolley!sjolley@nat/intel/x-lfefxgiyidvbbkdm> has quit IRC | 22:26 | |
*** joshuagl <joshuagl!~joshuagl@192.198.151.44> has quit IRC | 22:27 | |
kergoth | Marex: cross = built to run on the build machine, but target the target. target builds binaries that run on target, not the build machine. the main example of a cross tool is the crosscompiler. | 22:27 |
Marex | kergoth: thanks | 22:28 |
Marex | kergoth: now it makes sense to me | 22:28 |
*** sjolley <sjolley!~sjolley@134.134.137.75> has joined #yocto | 22:30 | |
*** rburton <rburton!~Adium@35.106.2.81.in-addr.arpa> has quit IRC | 22:38 | |
*** sjolley <sjolley!~sjolley@134.134.137.75> has quit IRC | 22:52 | |
*** sjolley <sjolley!sjolley@nat/intel/x-xrkkdyovbqkkpwnj> has joined #yocto | 22:55 | |
*** ant_home <ant_home!~ant__@host48-23-dynamic.14-87-r.retail.telecomitalia.it> has quit IRC | 23:00 | |
*** fmeerkoetter <fmeerkoetter!~quassel@service.basyskom.com> has quit IRC | 23:01 | |
*** bfederau <bfederau!~quassel@service.basyskom.com> has quit IRC | 23:01 | |
*** bfederau <bfederau!~quassel@service.basyskom.com> has joined #yocto | 23:01 | |
*** fmeerkoetter <fmeerkoetter!~quassel@service.basyskom.com> has joined #yocto | 23:01 | |
*** IvanSB <IvanSB!~IvanSB@host218-42-dynamic.21-79-r.retail.telecomitalia.it> has quit IRC | 23:07 | |
*** lamego <lamego!jose@nat/intel/x-sbeoagjfmecfenxc> has quit IRC | 23:07 | |
-YoctoAutoBuilder- build #606 of nightly-multilib is complete: Failure [failed BuildImages_4] Build details are at http://autobuilder.yoctoproject.org/main/builders/nightly-multilib/builds/606 | 23:09 | |
*** sjolley <sjolley!sjolley@nat/intel/x-xrkkdyovbqkkpwnj> has quit IRC | 23:11 | |
*** obsrwr <obsrwr!~obsrwr@188.24.212.34> has quit IRC | 23:30 | |
khem` | kergoth: nativesdk, crosssdk, cross-canadian, native also need to be explained ;) | 23:33 |
*** sjolley <sjolley!~sjolley@134.134.139.77> has joined #yocto | 23:44 | |
*** jbrianceau_away <jbrianceau_away!uid10952@gateway/web/irccloud.com/x-gymmoyvwrnhwntrx> has quit IRC | 23:45 | |
*** madisox <madisox!~madison@12.30.244.5> has quit IRC | 23:50 | |
*** karobar <karobar!4432d82d@gateway/web/freenode/ip.68.50.216.45> has quit IRC | 23:53 | |
*** Klox <Klox!~Jacob@c-24-15-54-56.hsd1.il.comcast.net> has quit IRC | 23:55 |
Generated by irclog2html.py 4.0.0 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!