Friday, 2013-11-15

*** fenrig <fenrig!~fenrig@94-226-35-134.access.telenet.be> has joined #yocto00:02
*** _darknighte_ <_darknighte_!~darknight@pdpc/supporter/professional/darknighte> has joined #yocto00:03
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has quit IRC00:03
*** _darknighte_ is now known as darknighte00:03
*** Rootert <Rootert!~Rootert@54694E34.cm-12-2b.dynamic.ziggo.nl> has quit IRC00:05
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has quit IRC00:05
*** ant_home <ant_home!~andrea@host39-62-dynamic.24-79-r.retail.telecomitalia.it> has quit IRC00:06
*** Squix <Squix!~Squix___@p021.net112139202.tokai.or.jp> has joined #yocto00:12
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has joined #yocto00:27
*** munch <munch!~mark@c-67-184-166-69.hsd1.il.comcast.net> has quit IRC00:33
*** hollisb <hollisb!~hollisb@nat-wv.mentorg.com> has quit IRC00:38
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has quit IRC00:38
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC00:43
*** [simar|o1] <[simar|o1]!~simar@206-248-139-195.dsl.teksavvy.com> has joined #yocto00:52
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has quit IRC00:55
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has quit IRC01:02
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has joined #yocto01:11
*** [simar|o1] <[simar|o1]!~simar@206-248-139-195.dsl.teksavvy.com> has quit IRC01:15
*** [simar|o1] <[simar|o1]!~simar@206-248-139-195.dsl.teksavvy.com> has joined #yocto01:18
mtahmedvmeson: No comments on the email but I found out that the compilers are being set in `meta/conf/*conf` files. Now I need to figure out how to overwrite those variables, and use the new variables.01:20
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has quit IRC01:22
mtahmedIf someone has already done something similar, that would have been very helpful.01:23
*** MDR <MDR!~mdrustad@134.134.139.74> has quit IRC01:28
*** rogerzhou <rogerzhou!~rogerzhou@1.202.252.122> has joined #yocto01:29
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has joined #yocto01:34
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC01:35
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto01:36
vmesonmtahmed: I don't know of anyone who has done this exactly. Certainly people override the open source gcc with a vendor supported one01:37
*** [simar|o1] <[simar|o1]!~simar@206-248-139-195.dsl.teksavvy.com> has quit IRC01:38
kergothwhat are you trying to do exactly?01:38
mtahmedkergoth: Trying to use llvm+clang for oe/poky.01:40
kergothas a crosscompiler toolchain, or native?01:41
mtahmedThe first "goal" could be to try to build core-image-minimal for poky-tiny using llvm+clang. So far, I have been able to compile the clang cross-compiler.01:41
mtahmedAs a cross-compiler toolchain for building the images.01:42
kergothafaik stock clang/llvm doesn't even support easy selection of target and corresponding sysroot yet, hence the existance of projects like ellcc01:42
kergothcould be mistaken, though01:42
kergothI would definitely love to see this as a possibility though. There's definite value in it, both from a tooling perspective, and for folks who are gpl-averse01:42
* vmeson recalls seeing ellcc... a year or two ago but I thought that clang no longer needed that help.01:43
kergothit's also worth noting that neither clang nor llvm replace binutils, there's no pure bsd binutils replacement afaik. there's elftoolchain, which is promising, but it's still missing the assembler and linker. not sure if you care about that or not01:43
kergothclang has an argument to select the target, but i don't know whether or not its smart enough to associate that with the appropriate sysroot for multilib01:44
* kergoth shrugs01:44
*** mr_science <mr_science!~sarnold@gentoo/developer/nerdboy> has quit IRC01:45
vmesonkergoth:  mtahmed (and I) are just trying to take the first few steps to understand what needs to be done so your comments are certainly helpful.01:45
vmesonmtahmed: http://ellcc.org/ (in case you can't use google. :)  )01:45
kergothhttp://www.embtoolkit.org/ apparently has some llvm stuff too, never tried it though01:45
kergothi've started trying to look at this in the past too, mostly was at the information gathering stage though01:45
kergothalso wanted to try using musl instead of eglibc, as an experiment/exercise :)01:45
mtahmedHaha. I already saw that :D. "associate that with the appropriate sysroot for multilib"? I am kind of noob with this stuff right now.01:45
kergothhttp://wiki.musl-libc.org/wiki/BuildingLLVM may be of interest for that01:46
vmesonwe could hard-code some thing for one target arch as an initial proof of concept project since mtahmed has only 4 more weeks of co-op.01:46
kergothyeah, that would work, just a separate toolchain for each target configuration, no multilib01:46
kergothi honestly have no idea what clang's default search paths are for libs & headers, that'd be worth investigating so you know where to put things like crti.o01:47
kergothsounds like a fun project though, good luck with it01:47
kergothwill definitely be curious to hear how it goes01:47
vmesonhttp://ellcc.org/viewvc/svn/ellcc/trunk/ is still active - that's good. If only they used git!01:48
kergothgit-svn is our friend ;)01:48
kergothremember that you don't need to build llvm+clang in yocto necessarily, a first step could be to find an existing one and alter the external toolchain stuff to grab its C library & headers01:48
kergothcould then move on to the more complex bootstrapping process from there01:49
kergothyour call01:49
kergothbut something to keep in mind01:49
kergothat least that would get you to the point where you'd be able to fix any build failures resulting from the use of clang rather than gcc :)01:49
kergoth(theoretically)01:49
*** zenlinux <zenlinux!~sgarman@c-50-139-96-211.hsd1.or.comcast.net> has joined #yocto01:51
mtahmedAre there some small examples of using a non-host compiler for builds?01:56
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has joined #yocto01:56
*** Rootert <Rootert!~Rootert@54694E34.cm-12-2b.dynamic.ziggo.nl> has joined #yocto01:56
kergothnot sure what you mean by that01:57
kergothyocto always uses a non-host compiler for builds01:57
kergothit builds its own crosscompiler01:57
kergothunless you configure it for an external toolchain, e.g. the mentor graphics / codesourcery one (see https://github.com/MentorEmbedded/meta-sourcery)01:58
*** vmeson <vmeson!~quassel@128.224.252.2> has quit IRC01:58
mtahmedWell, I am quite noob. Then are there examples of using an external one?01:58
kergothyou should be able to use that as an example if you wanted to, say, use a prebuilt ellcc rather than trying to get yocto to build llvm+clang01:58
mtahmedOkay I could look at that.01:58
kergothpoky includes an external toolchainc onfiguration right in it01:58
kergothin oe-core01:58
kergothbut it's not well supported, and its a sourcery example, so you're better off using meta-sourcery as an example, i think01:59
mtahmedOkay that would be (much?) easier? Just build clang separately, drop it in somewhere, and use to with the appropriate target arguments?01:59
mtahmedAnd then see where/why I am getting errors (with include paths etc.)02:00
kergothtough to say without digging in in more detail, but from a look at hte musl page, there are quite a few components you'll need to build, which means you'd need recipes for each02:00
* kergoth shrugs02:00
kergothI've never built llvm+clang from scratch myself, so I'm no expert :)02:00
*** vmeson <vmeson!~quassel@128.224.252.2> has joined #yocto02:00
mtahmedI have experience with llvm+clang ... I am maintaining (some) archlinux packages for it as well.02:01
mtahmedI have little experience with bitbake/yocto/oe/poky stuff though.02:01
mtahmedWhich is what I am seeking help with. And thanks for the tips. I need to save them somewhere now :)02:01
kergothno problem02:02
vmesongit svn clone -s http://ellcc.org/viewvc/svn/ellcc/ ellcc.git didn't work -- I have a custom git in /usr/local so I'll have to fix:02:11
vmesonRepository has been moved: Repository moved permanently to '/viewvc/svn/ellcc'; please relocate at /usr/local/share/perl/5.14.2/Git/SVN.pm line 31002:11
vmesontomorrowish...02:11
*** Rootert <Rootert!~Rootert@54694E34.cm-12-2b.dynamic.ziggo.nl> has quit IRC02:14
*** seebs <seebs!~seebs@home.seebs.net> has quit IRC02:14
*** joeythesaint <joeythesaint!~jjm@198-84-238-35.cpe.teksavvy.com> has quit IRC02:15
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has quit IRC02:17
*** seebs <seebs!~seebs@home.seebs.net> has joined #yocto02:17
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has joined #yocto02:18
*** Rootert <Rootert!~Rootert@54694E34.cm-12-2b.dynamic.ziggo.nl> has joined #yocto02:18
mtahmedOkay.02:20
*** fenrig <fenrig!~fenrig@94-226-35-134.access.telenet.be> has quit IRC02:22
kergothviewvc isn't an svn repository url, afaik, its likely the web browsing interface to it02:26
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has quit IRC02:26
kergothper http://ellcc.org/blog/?p=251: % svn checkout http://ellcc.org/svn/ellcc/trunk ellcc02:26
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has joined #yocto02:31
*** [simar|on] <[simar|on]!~simar@96.125.133.73> has joined #yocto02:32
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC02:35
*** [simar|o1] <[simar|o1]!~simar@206-248-139-195.dsl.teksavvy.com> has joined #yocto02:37
*** [simar|on] <[simar|on]!~simar@96.125.133.73> has quit IRC02:40
*** challinan <challinan!~challinan@173-10-226-189-BusName-WestFlorida.hfc.comcastbusiness.net> has quit IRC02:44
*** rogerzhou <rogerzhou!~rogerzhou@1.202.252.122> has quit IRC03:06
Crofton|workDo you guys have any idea how har dit is to figure out how old OE is :)03:10
Crofton|workThis may be the best date I have: http://developer.berlios.de/projects/bitbake03:11
*** Garibaldi|work <Garibaldi|work!~andydalt@nat/cisco/x-zvoxrzngsqwjpgbu> has quit IRC03:13
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has joined #yocto03:13
kergothCrofton|work: first commit in the bitbake repo, which goes back to the bitkeeper days, is feb 200303:13
kergothi started work on a timeline at one point, but i can't seem to figure out where i put it03:13
Crofton|workfeel free to correct my email to the yocto list :)03:13
kergothat one point i found the ibot irc logs of some of the original discussions, including the debate where we decided to call it 'openembedded' :)03:13
kergothalso some of the old wiki pages out of the wayback machine03:14
*** maharvey <maharvey!~maharvey@134.134.139.74> has quit IRC03:14
Crofton|workif you find that agina, it would be handy for me to have as a reference03:14
Crofton|workwe've come a long way, but I want to make sure people do not forget the path we took to get here03:15
*** [simar|o1] <[simar|o1]!~simar@206-248-139-195.dsl.teksavvy.com> has quit IRC03:16
*** willwillson <willwillson!~smuxi@host81-151-11-193.range81-151.btcentralplus.com> has quit IRC03:18
*** behanw <behanw!~behanw@S01067cb21b219d94.gv.shawcable.net> has quit IRC03:22
*** rogerzhou <rogerzhou!~rogerzhou@1.202.252.122> has joined #yocto03:22
*** [simar|o1] <[simar|o1]!~simar@96.125.133.73> has joined #yocto03:25
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has quit IRC03:28
*** [simar|on] <[simar|on]!~simar@69.166.24.103> has joined #yocto03:30
*** [simar|o1] <[simar|o1]!~simar@96.125.133.73> has quit IRC03:31
*** Jefro <Jefro!~jefro@50-0-152-82.dedicated.static.sonic.net> has joined #yocto03:34
*** behanw <behanw!~behanw@S01067cb21b219d94.gv.shawcable.net> has joined #yocto03:34
*** ynezz_ <ynezz_!ynezz@ibawizard.net> has joined #yocto03:47
*** shoragan <shoragan!~jlu@debian/developer/shoragan> has quit IRC03:47
*** BSDCat <BSDCat!~unique@calvin.idempot.net> has joined #yocto03:47
*** shoragan <shoragan!~jlu@debian/developer/shoragan> has joined #yocto03:48
*** _darknighte_ <_darknighte_!~darknight@pdpc/supporter/professional/darknighte> has joined #yocto03:49
*** chris_wrs_sd1 <chris_wrs_sd1!~CBuerger@ip72-192-153-82.sd.sd.cox.net> has joined #yocto03:51
*** slips_ <slips_!~slips@95.130.216.34> has joined #yocto03:51
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has quit IRC03:52
*** chris_wrs_sd <chris_wrs_sd!~CBuerger@ip72-192-153-82.sd.sd.cox.net> has quit IRC03:52
*** mthalmei_away <mthalmei_away!~mthalmei@ex4.michisoft.net> has quit IRC03:52
*** BSDCat_ <BSDCat_!~unique@calvin.idempot.net> has quit IRC03:52
*** slips <slips!~slips@95.130.216.34> has quit IRC03:52
*** eren <eren!~eren@unaffiliated/eren> has quit IRC03:52
*** ynezz <ynezz!ynezz@ibawizard.net> has quit IRC03:52
*** reaperofsouls <reaperofsouls!~reaperofs@64.2.3.195.ptr.us.xo.net> has quit IRC03:52
*** sakoman <sakoman!~steve@static-74-41-60-154.dsl1.pco.ca.frontiernet.net> has quit IRC03:52
*** reaperofsouls <reaperofsouls!~reaperofs@64.2.3.195.ptr.us.xo.net> has joined #yocto03:53
*** _darknighte_ is now known as darknighte03:53
*** [simar|o1] <[simar|o1]!~simar@206-248-139-195.dsl.teksavvy.com> has joined #yocto03:55
*** mthalmei_away <mthalmei_away!~mthalmei@ex4.michisoft.net> has joined #yocto03:56
*** [simar|on] <[simar|on]!~simar@69.166.24.103> has quit IRC03:58
*** sakoman <sakoman!~steve@static-74-41-60-154.dsl1.pco.ca.frontiernet.net> has joined #yocto03:58
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has joined #yocto04:00
*** [simar|o1] <[simar|o1]!~simar@206-248-139-195.dsl.teksavvy.com> has quit IRC04:00
*** rogerzhou <rogerzhou!~rogerzhou@1.202.252.122> has quit IRC04:01
*** eren <eren!~eren@unaffiliated/eren> has joined #yocto04:04
*** Jefro <Jefro!~jefro@50-0-152-82.dedicated.static.sonic.net> has quit IRC04:12
*** rogerzhou <rogerzhou!~rogerzhou@1.202.252.122> has joined #yocto04:14
*** jmpdelos <jmpdelos!~polk@174-22-170-198.clsp.qwest.net> has quit IRC04:23
*** jmpdelos <jmpdelos!~polk@174.22.170.198> has joined #yocto04:23
*** Jefro <Jefro!~jefro@50-0-152-82.dedicated.static.sonic.net> has joined #yocto04:30
*** Jefro <Jefro!~jefro@50-0-152-82.dedicated.static.sonic.net> has quit IRC05:01
vmesonkergoth: oh yeah, thanks. This works: git svn clone http://ellcc.org/svn/ellcc ellcc.git or at least started working.. time for sleep.05:10
*** sunfunbaby <sunfunbaby!~Thunderbi@host-217-197-199-22.rev.as20985.net> has joined #yocto05:21
*** [simar|o1] <[simar|o1]!~simar@206-248-139-195.dsl.teksavvy.com> has joined #yocto05:28
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has quit IRC05:32
*** nitink <nitink!~nitink@134.134.139.70> has quit IRC05:44
*** [simar|on] <[simar|on]!~simar@69.166.24.103> has joined #yocto05:47
*** [simar|o1] <[simar|o1]!~simar@206-248-139-195.dsl.teksavvy.com> has quit IRC05:50
*** ynezz_ is now known as ynezz05:51
*** [simar|on] <[simar|on]!~simar@69.166.24.103> has quit IRC05:52
*** [simar|o1] <[simar|o1]!~simar@96.125.133.73> has joined #yocto05:52
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has joined #yocto06:00
*** nitink <nitink!~nitink@134.134.139.76> has joined #yocto06:01
*** [simar|o1] <[simar|o1]!~simar@96.125.133.73> has quit IRC06:03
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has quit IRC06:06
*** [simar|o1] <[simar|o1]!~simar@69.166.24.103> has joined #yocto06:18
*** GusBricker <GusBricker!~GusBricke@CPE-120-148-198-99.heum1.vic.bigpond.net.au> has quit IRC06:21
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has quit IRC06:22
*** agust <agust!~agust@p4FDE6A1B.dip0.t-ipconnect.de> has joined #yocto06:23
*** n01 <n01!~n01@2-238-57-164.ip242.fastwebnet.it> has joined #yocto06:36
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has joined #yocto06:38
*** Squix <Squix!~Squix___@p021.net112139202.tokai.or.jp> has quit IRC06:40
*** [simar|o1] <[simar|o1]!~simar@69.166.24.103> has quit IRC06:41
*** n01 <n01!~n01@2-238-57-164.ip242.fastwebnet.it> has quit IRC06:47
*** tor <tor!~tor@c-d567e655.125-1-64736c10.cust.bredbandsbolaget.se> has joined #yocto06:57
*** tc_ <tc_!~quassel@194.17.253.121> has quit IRC07:13
*** brm123 <brm123!~androirc@155.250.69.111.dynamic.snap.net.nz> has joined #yocto07:19
brm123Hey guys, anyone know how to patch files that are not in  tmp/work/beaglebone/  I.e nano ... ?07:21
brm123I.e in the arm7... directory ..07:22
nerdboyas in do_patch?07:24
nerdboyyou can sed/awk/manual stuff in SYSROOT/blah but that's definitely a hack07:25
*** Zagor <Zagor!~bjst@sestofw01.enea.se> has joined #yocto07:25
*** Zagor <Zagor!~bjst@rockbox/developer/Zagor> has joined #yocto07:25
nerdboywhat exactly do you think you need to do?07:25
*** behanw <behanw!~behanw@S01067cb21b219d94.gv.shawcable.net> has quit IRC07:26
brm123I want to patch nano and put the patch in my layer .. that works ok for other source but not the source to nano ..07:26
nerdboyyou would patch nano with a nano_X.X.bbappend07:28
brm123Or any other source in tmp/work/arm7 ....07:28
nerdboyyou can add custom functions to recipes if really want control07:28
brm123Yep I know, it appears to work, I.e no compile error, but patch is not applied07:28
nerdboybut it sounds like all you need is a small bbappend with a patch file in it07:29
brm123I di that it does not work07:29
nerdboythen something's wrong with the recipe07:29
nerdboywhat does your SRC_URI look like?07:29
brm123I have similar patches for the linux kernel, they all work07:29
nerdboySRC_URI_append and SRC_URI+= should both work07:30
nerdboythe former is probably preferred07:30
brm123SRC_URI += file://parch07:31
*** sameo <sameo!~samuel@192.55.54.36> has quit IRC07:32
nerdboytry _append instead07:32
nerdboyand don't forget the quotea07:33
brm123Ok, but += works for other .bbapend files07:33
brm123Yep have the quotes07:33
nerdboyseems like a remember a couple of cases where it didn't07:33
nerdboySRC_URI_append = "file://parch"  <=  try that07:34
brm123Ok, will do thanks ..07:34
*** SorenHolm <SorenHolm!~quassel@cpe.ge-0-2-0-950.faaqnqu1.dk.customer.tdc.net> has joined #yocto07:34
*** ant_work <ant_work!~ant@host54-128-static.10-188-b.business.telecomitalia.it> has joined #yocto07:35
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has quit IRC07:39
*** brm123 <brm123!~androirc@155.250.69.111.dynamic.snap.net.nz> has quit IRC07:40
*** rogerzhou <rogerzhou!~rogerzhou@1.202.252.122> has quit IRC07:40
*** zeeblex <zeeblex!apalalax@nat/intel/x-ldqkxilfgbvaihnc> has joined #yocto07:42
*** panda84kde <panda84kde!~diego@static-217-133-170-65.clienti.tiscali.it> has joined #yocto07:44
*** n01 <n01!~n01@host43-8-static.10-188-b.business.telecomitalia.it> has joined #yocto07:51
*** rogerzhou <rogerzhou!~rogerzhou@1.202.252.122> has joined #yocto07:52
*** eballetbo <eballetbo!~eballetbo@43.Red-2-139-180.staticIP.rima-tde.net> has joined #yocto07:58
*** elmi82 <elmi82!~timo@mail.bmw-carit.de> has joined #yocto08:04
*** roric <roric!~roric@c-107ae455.213-3-64736c14.cust.bredbandsbolaget.se> has quit IRC08:07
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has joined #yocto08:13
*** B4gder <B4gder!~daniel@sestofw01.enea.se> has joined #yocto08:14
*** erbo <erbo!~erik@host.62.65.125.245.bitcom.se> has joined #yocto08:18
*** n01 <n01!~n01@host43-8-static.10-188-b.business.telecomitalia.it> has quit IRC08:19
*** n01 <n01!~n01@host225-0-static.96-5-b.business.telecomitalia.it> has joined #yocto08:20
*** blitz00 <blitz00!~stefans@192.198.151.43> has joined #yocto08:23
*** blitz00 <blitz00!~stefans@unaffiliated/blitz00> has joined #yocto08:23
*** florian_kc <florian_kc!~fuchs@port-217-146-132-69.static.qsc.de> has joined #yocto08:25
*** florian_kc <florian_kc!~fuchs@Maemo/community/contributor/florian> has joined #yocto08:25
*** florian_kc is now known as florian08:25
*** jwhitmore <jwhitmore!~jwhitmore@79.97.161.188> has joined #yocto08:26
*** roric <roric!~roric@c-919f70d5.013-177-67626713.cust.bredbandsbolaget.se> has joined #yocto08:39
*** sameo <sameo!samuel@nat/intel/x-vjpxhqiiedyjqorx> has joined #yocto08:40
*** mckoan|away is now known as mckoan08:44
*** jwhitmore <jwhitmore!~jwhitmore@79.97.161.188> has quit IRC08:44
mckoangood morning08:44
*** fpaut <fpaut!~fpaut@LVelizy-156-44-42-252.w217-128.abo.wanadoo.fr> has joined #yocto08:45
*** rainerschuster <rainerschuster!~Adium@pD951B77A.dip0.t-ipconnect.de> has joined #yocto08:49
TuTizzmorning all08:53
*** rogerzhou <rogerzhou!~rogerzhou@1.202.252.122> has quit IRC08:54
TuTizzCan someone tell me what is the correct way to modify a *.inc? (I want to remove tiff from qt4.inc) Should I create a patch? Can I do that from a *.bbappend?09:04
*** maharvey <maharvey!~maharvey@134.134.137.75> has joined #yocto09:05
*** rogerzhou <rogerzhou!~rogerzhou@1.202.252.122> has joined #yocto09:06
*** kmn <kmn!~knikkane@2001:998:22:0:7c64:d547:de07:d746> has quit IRC09:12
*** fpaut is now known as fpaut_09:12
*** Pellefanatisk <Pellefanatisk!52c4c692@gateway/web/freenode/ip.82.196.198.146> has joined #yocto09:20
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has joined #yocto09:26
*** fenrig <fenrig!~fenrig@d51A51A58.access.telenet.be> has joined #yocto09:31
draskohi all. When I run bitbake busybox -c menuconfig, ncurses are confused, everything is misaligned09:33
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has joined #yocto09:33
ndecTuTizz: the .inc in included in the .bb file. so anything you do in .bbappend will indeed have impact on the .inc/.bb file.09:34
ndechowever, the .inc can be included in many .bb files, so you might need to add many .bbappend...09:35
*** mihai <mihai!~mihai@80.97.15.150> has joined #yocto09:36
ndecok, it doesn't seem to be the case for qt4.inc, it's included once.09:36
draskocan it be messed locale?09:37
draskohow to fix this?09:37
*** jonatan <jonatan!~quassel@194.237.7.146> has joined #yocto09:37
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has quit IRC09:38
*** bluelightning <bluelightning!~paul@83.217.123.106> has joined #yocto09:40
*** bluelightning <bluelightning!~paul@83.217.123.106> has quit IRC09:40
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto09:40
*** beaver_545 <beaver_545!~stuart@82.148.40.66> has joined #yocto09:50
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has quit IRC09:54
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has joined #yocto09:57
*** Pablooooo <Pablooooo!~chatzilla@static-88.131.62.43.addr.tdcsong.se> has joined #yocto10:00
draskoanyone on the channel ?10:08
tobiashdrasko: did you try a different terminal?10:10
draskotobiash, not10:10
*** ddalex1 <ddalex1!~ddalex@84.93.174.71> has joined #yocto10:10
draskoI am trying to find do_meniuconfig() for BUsybox10:10
draskoI do not find it10:10
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has quit IRC10:11
*** fpaut_ is now known as fpaut10:11
tobiashdrasko: it's in cml1.bbclass10:12
draskotobiash, I do not get how for Linux menuconfig works nicely10:12
draskoand for Busybox not10:13
draskosame terminal...10:13
bluelightningmorning all10:13
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has joined #yocto10:15
draskotobiash, in meta/recipes-core/busybox/busybox.inc I can see just cml1_do_configure10:18
draskoHowever I can not find where it calls menuconfig10:18
draskoI also can not find where kernel recipes inherit cml110:19
draskoBecause kernel recipes must do something correct, as ncurses is displayed correctly over there.10:19
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has quit IRC10:20
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has joined #yocto10:23
tobiashdrasko: the addtask for menuconfig is in the cml1.bbclass which is called by you as you called bitbake with -c menuconfig10:30
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has quit IRC10:31
*** JimBaxter <JimBaxter!~jbaxter@jimbax.plus.com> has joined #yocto10:31
draskotobiash, I can see that. I just can not see where kernel recipes inherist cml1.bbclass10:32
drasko*inherit10:32
*** fpaut is now known as fpaut_10:32
*** Pablooooo <Pablooooo!~chatzilla@static-88.131.62.43.addr.tdcsong.se> has quit IRC10:37
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has joined #yocto10:42
*** fpaut_ is now known as fpaut10:45
*** fpaut is now known as fpaut_10:47
*** fpaut_ is now known as fpaut10:47
*** SorenHolm <SorenHolm!~quassel@cpe.ge-0-2-0-950.faaqnqu1.dk.customer.tdc.net> has quit IRC10:47
*** SorenHolm <SorenHolm!~quassel@cpe.ge-0-2-0-950.faaqnqu1.dk.customer.tdc.net> has joined #yocto10:49
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has quit IRC10:52
*** rogerzhou <rogerzhou!~rogerzhou@1.202.252.122> has quit IRC10:58
draskoHi all, I can not see ldd tool in my sdk11:01
draskowhere is it located in yocto11:01
*** fenrig <fenrig!~fenrig@d51A51A58.access.telenet.be> has quit IRC11:04
*** Stygia <Stygia!~gmpsaifi@109.57.144.141.mobile.3.dk> has joined #yocto11:07
*** mulhern <mulhern!~mulhern@c-67-186-188-203.hsd1.ma.comcast.net> has joined #yocto11:11
ant_workdrasko: https://lists.yoctoproject.org/pipermail/yocto/2013-November/017149.html11:13
*** Stygia <Stygia!~gmpsaifi@109.57.144.141.mobile.3.dk> has quit IRC11:13
draskoant_work, would this mean that I;d have to add tools-sdk to my EXTRA_IMAGE_FEATURES?11:14
*** ddalex <ddalex!~ddalex@192.198.151.43> has quit IRC11:14
draskoIn order to obtain readelf11:14
*** Stygia <Stygia!~gmpsaifi@109.57.144.141.mobile.3.dk> has joined #yocto11:14
*** mihai <mihai!~mihai@80.97.15.150> has quit IRC11:14
*** Stygia <Stygia!~gmpsaifi@109.57.144.141.mobile.3.dk> has quit IRC11:25
*** reaperofsouls <reaperofsouls!~reaperofs@64.2.3.195.ptr.us.xo.net> has quit IRC11:30
*** reaperofsouls <reaperofsouls!~reaperofs@64.2.3.195.ptr.us.xo.net> has joined #yocto11:30
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has joined #yocto11:38
*** tinti <tinti!~tinti@pdpc/supporter/student/tinti> has joined #yocto11:46
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has quit IRC11:47
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has joined #yocto11:50
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has joined #yocto11:54
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has quit IRC11:58
*** rainerschuster <rainerschuster!~Adium@pD951B77A.dip0.t-ipconnect.de> has quit IRC12:04
bluelightningJaMa: FYI: https://bugzilla.yoctoproject.org/show_bug.cgi?id=554612:10
yoctiBug 5546: enhancement, Undecided, ---, paul.eggleton, NEW , Optimise away meta-oe X init mechanism12:10
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has quit IRC12:11
*** rainerschuster <rainerschuster!~Adium@pD951B77A.dip0.t-ipconnect.de> has joined #yocto12:15
*** tinti <tinti!~tinti@pdpc/supporter/student/tinti> has quit IRC12:17
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has joined #yocto12:21
JaMabluelightning: thx12:23
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has joined #yocto12:26
*** sunfunbaby <sunfunbaby!~Thunderbi@host-217-197-199-22.rev.as20985.net> has quit IRC12:39
*** tlwoerner <tlwoerner!~trevor@linaro/tlwoerner> has quit IRC12:51
*** tlwoerner <tlwoerner!~trevor@linaro/tlwoerner> has joined #yocto12:52
TuTizzthanks ndec. I will try that13:00
*** joeythesaint <joeythesaint!~jjm@128.224.252.2> has joined #yocto13:04
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has quit IRC13:09
*** mihai <mihai!~mihai@80.97.15.150> has joined #yocto13:25
*** kmn <kmn!~knikkane@2001:998:22:0:f104:f35:d821:2207> has joined #yocto13:39
*** ddalex1 <ddalex1!~ddalex@84.93.174.71> has quit IRC13:50
*** SorenHolm <SorenHolm!~quassel@cpe.ge-0-2-0-950.faaqnqu1.dk.customer.tdc.net> has quit IRC13:51
*** jcmuller <jcmuller!c02c551c@gateway/web/freenode/ip.192.44.85.28> has joined #yocto14:10
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has quit IRC14:13
*** jcmuller <jcmuller!c02c551c@gateway/web/freenode/ip.192.44.85.28> has quit IRC14:17
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has joined #yocto14:19
*** B4gder <B4gder!~daniel@sestofw01.enea.se> has quit IRC14:27
*** maharvey <maharvey!~maharvey@134.134.137.75> has quit IRC14:30
*** maharvey_ <maharvey_!maharvey@nat/intel/x-lgmgbscpqbjckgar> has joined #yocto14:30
*** sakoman <sakoman!~steve@static-74-41-60-154.dsl1.pco.ca.frontiernet.net> has quit IRC14:35
*** sakoman <sakoman!~steve@static-74-41-60-154.dsl1.pco.ca.frontiernet.net> has joined #yocto14:37
*** Garibaldi|work <Garibaldi|work!~andydalt@nat/cisco/x-zddizaetqqzdfams> has joined #yocto14:45
*** likewise <likewise!~likewise@h230004.upc-h.chello.nl> has joined #yocto14:51
*** Zagor <Zagor!~bjst@rockbox/developer/Zagor> has quit IRC14:56
*** Garibaldi|work <Garibaldi|work!~andydalt@nat/cisco/x-zddizaetqqzdfams> has quit IRC14:58
*** walters <walters!~walters@c-66-31-18-51.hsd1.ma.comcast.net> has joined #yocto15:01
*** diego <diego!~diego@static-217-133-170-65.clienti.tiscali.it> has joined #yocto15:02
*** diego is now known as Guest462715:02
*** panda84kde <panda84kde!~diego@static-217-133-170-65.clienti.tiscali.it> has quit IRC15:06
*** Guest4627 is now known as panda84kde15:06
*** oneQubit <oneQubit!~oneQubit@li439-130.members.linode.com> has joined #yocto15:08
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has quit IRC15:09
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has joined #yocto15:10
*** munch <munch!~mark@c-67-184-166-69.hsd1.il.comcast.net> has joined #yocto15:13
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has quit IRC15:14
*** Pellefanatisk <Pellefanatisk!52c4c692@gateway/web/freenode/ip.82.196.198.146> has quit IRC15:15
*** vmeson <vmeson!~quassel@128.224.252.2> has quit IRC15:17
*** vmeson <vmeson!~quassel@128.224.252.2> has joined #yocto15:19
mtahmedkergoth: I was looking at https://github.com/MentorEmbedded/meta-sourcery and I was wondering if it's possible to directly add that layer and set EXTERNAL_TOOLCHAIN to the llvm+clang install?15:19
mtahmedOr would I need to replicate what it does?15:20
*** likewise <likewise!~likewise@h230004.upc-h.chello.nl> has quit IRC15:24
*** jwhitmore <jwhitmore!~jwhitmore@79.97.161.188> has joined #yocto15:25
*** ant_work <ant_work!~ant@host54-128-static.10-188-b.business.telecomitalia.it> has quit IRC15:31
*** henriknj <henriknj!~hnj@henriknj.dk> has joined #yocto15:37
*** behanw <behanw!~behanw@S01067cb21b219d94.gv.shawcable.net> has joined #yocto15:47
kergothmtahmed: there are likely at least some assumptions in that about the layout ofthe toolchain. you're certainly ewlcomet o try15:47
*** eballetbo <eballetbo!~eballetbo@43.Red-2-139-180.staticIP.rima-tde.net> has quit IRC15:51
mtahmedkergoth: I am trying to understand how the CC, CXX etc. variables are set and how autotools etc. uses them.15:53
mtahmedFrom what I understand so far, recipes include autotools. And it magically builds everything for them using some compiler.15:54
mtahmedI am still trying to understand how it determines what compiler to use etc.15:55
mtahmedI am also trying to see how the PROVIDES/DEPENDS variables work.16:01
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto16:02
*** acidfu <acidfu!~nib@unaffiliated/acidmen> has quit IRC16:03
*** tor <tor!~tor@c-d567e655.125-1-64736c10.cust.bredbandsbolaget.se> has quit IRC16:11
*** seebs <seebs!~seebs@home.seebs.net> has quit IRC16:12
*** diego_ <diego_!~diego@static-217-133-170-65.clienti.tiscali.it> has joined #yocto16:13
*** diego_ <diego_!~diego@static-217-133-170-65.clienti.tiscali.it> has quit IRC16:14
*** seebs <seebs!~seebs@home.seebs.net> has joined #yocto16:15
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto16:15
*** darknighte is now known as darknighte_znc16:16
*** panda84kde <panda84kde!~diego@static-217-133-170-65.clienti.tiscali.it> has quit IRC16:18
*** Jefro <Jefro!~jefro@50-0-152-82.dedicated.static.sonic.net> has joined #yocto16:20
kergothmtahmed: read bitbake.conf in oe-core16:20
*** jwhitmore <jwhitmore!~jwhitmore@79.97.161.188> has quit IRC16:21
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has quit IRC16:21
mtahmedkergoth: Alright. I think I did look at that before.16:22
*** hollisb <hollisb!~hollisb@c-50-139-17-21.hsd1.or.comcast.net> has joined #yocto16:29
*** sameo <sameo!samuel@nat/intel/x-vjpxhqiiedyjqorx> has quit IRC16:47
*** ant_home <ant_home!~andrea@host39-62-dynamic.24-79-r.retail.telecomitalia.it> has joined #yocto16:47
*** lexszero <lexszero!~lexszero@jabber.spbu.ru> has joined #yocto16:51
*** zenlinux <zenlinux!~sgarman@c-50-139-96-211.hsd1.or.comcast.net> has quit IRC16:52
lexszerohmm. i have a recipe with SRC_URI = "git://git@git-server.local:somerepo;branch=somebranch" and SRCREV="${AUTOREV}". for somewhat reason bitbake runs git fetch file://git@git-server.local:somerepo and it obviously fails. how to fix this? possibly a bug...17:00
lexszerogit-server.local is a valid hostname of our corporate git server17:01
TuTizzhi, when I try to build my image ${CORE_IMAGE_BASE_INSTALL} with INCOMPATIBLE_LICENSE = "GPLv3", I got an issue during  do_rootfs : | Processing packagegroup-core-boot... | error: Failed dependencies:       libreadline.so.6 is needed by bluez4-4.101-r3.armv7a_vfp_neon. Anyone got an idea?17:01
*** mckoan is now known as mckoan|away17:07
LetoThe2ndis this a known thing when trying to eclipse-adt debug against qemuarm? "Could not determine GDB version after sending: gdb --version"17:09
LetoThe2ndrunning works fine, it also seems to start the gdbserver, but fails with the given error message to debug17:09
kergothlexszero: that's not a valid url17:10
kergothlexszero: you can't use a : seprator between a host and path in a url17:10
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has joined #yocto17:11
kergothlexszero: change that ot a / and you'll be fine17:11
kergothalso, it sounds like you want ssh protocol, not git://, so add ;protocol=ssh17:11
kergothso git://git@git-server.local/somerepo;protocol=ssh17:11
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has quit IRC17:15
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has joined #yocto17:16
*** galak <galak!~galak@99-51-185-173.lightspeed.austtx.sbcglobal.net> has joined #yocto17:20
*** mr_science <mr_science!~sarnold@gentoo/developer/nerdboy> has joined #yocto17:21
*** jackmitchell <jackmitchell!~Thunderbi@cbnluk-gw0.cambridgebroadband.com> has quit IRC17:22
lexszerokergoth: thanks, your advice helped. git remote git@git-server.local:somerepo always worked for me, so i thought bitbake will take this too.17:23
*** SorenHolm <SorenHolm!~quassel@5634f347.rev.stofanet.dk> has joined #yocto17:24
*** zenlinux <zenlinux!~sgarman@71.20.35.93> has joined #yocto17:24
*** elmi82 <elmi82!~timo@mail.bmw-carit.de> has quit IRC17:26
*** beaver_545 <beaver_545!~stuart@82.148.40.66> has quit IRC17:30
mr_sciencekergoth: do you normally have VM enabled in the kernel even with no physical swap device?17:35
kergothI don't understand the question17:37
*** ddalex <ddalex!~ddalex@84.93.174.71> has joined #yocto17:40
mr_scienceapparently our default kernel config has no swap enabled at all17:40
mr_sciencefor the TI8168 machine17:40
mr_sciencewhereas i do enable swap and use zram on an even "smaller" machine17:41
*** roric <roric!~roric@c-919f70d5.013-177-67626713.cust.bredbandsbolaget.se> has quit IRC17:41
kergothah. i usually leave it enabled myself, just in case. i doubt there's much impact to doing so17:42
mr_scienceseems like we hit a case where the kernel took a dump and kworker sucked up almost all of the cpu17:48
mr_sciencewasn't me, so it's just anecdotal so far...17:48
*** n01 <n01!~n01@host225-0-static.96-5-b.business.telecomitalia.it> has quit IRC17:49
*** hollisb <hollisb!~hollisb@c-50-139-17-21.hsd1.or.comcast.net> has quit IRC17:49
kergothhuh, interesting17:53
mr_sciencedmesg from that machine only shows the TI graphics blob spew and usbnet17:54
*** vmeson <vmeson!~quassel@128.224.252.2> has quit IRC17:54
mr_sciencemostly "VPSS_GRPX blah" over and over again...17:55
*** zeeblex <zeeblex!apalalax@nat/intel/x-ldqkxilfgbvaihnc> has left #yocto17:55
* mr_science hates on unsupported TI graphics17:55
*** vmeson <vmeson!~quassel@128.224.252.2> has joined #yocto17:56
*** ddalex <ddalex!~ddalex@84.93.174.71> has quit IRC17:56
*** TuTizz <TuTizz!~TuTizz@46.18.96.158> has quit IRC17:58
*** mihai <mihai!~mihai@80.97.15.150> has quit IRC17:59
*** mr_science <mr_science!~sarnold@gentoo/developer/nerdboy> has quit IRC18:15
*** Garibaldi|work <Garibaldi|work!~andydalt@nat/cisco/x-ebwxqygmzdlwjkqg> has joined #yocto18:22
*** mr_science <mr_science!~sarnold@net-cf9a4e93.cst.impulse.net> has joined #yocto18:25
*** mr_science <mr_science!~sarnold@gentoo/developer/nerdboy> has joined #yocto18:25
*** fpaut <fpaut!~fpaut@LVelizy-156-44-42-252.w217-128.abo.wanadoo.fr> has left #yocto18:27
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has quit IRC18:29
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC18:40
*** roric <roric!~roric@c-107ae455.213-3-64736c14.cust.bredbandsbolaget.se> has joined #yocto18:45
*** maharvey <maharvey!maharvey@nat/intel/x-jlmzrquxaqwwgcvk> has joined #yocto18:51
*** walters <walters!~walters@c-66-31-18-51.hsd1.ma.comcast.net> has quit IRC18:51
*** maharvey_ <maharvey_!maharvey@nat/intel/x-lgmgbscpqbjckgar> has quit IRC18:55
*** willwillson <willwillson!~smuxi@host81-151-11-193.range81-151.btcentralplus.com> has joined #yocto19:03
*** maharvey <maharvey!maharvey@nat/intel/x-jlmzrquxaqwwgcvk> has quit IRC19:03
*** smartin_ <smartin_!~smartin@ivr94-4-82-229-165-48.fbx.proxad.net> has joined #yocto19:06
*** mr_science <mr_science!~sarnold@gentoo/developer/nerdboy> has quit IRC19:09
vmesonmtahmed: it's be good to get a github page up now that you have a clang recipe19:11
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has joined #yocto19:11
vmesonI'd clone it and build locally so you'd have one user at least. :)19:12
vmesonalso, fyi for anyone following along, fray suggested that mtahmed start with http://www.openembedded.org/wiki/Adding_a_secondary_toolchain19:14
mtahmedvmeson: I already "forked" poky.19:15
mtahmedhttps://github.com/mtahmed19:15
mtahmedBut haven't push my clang recipe there yet.19:15
mtahmedIt's not very clean and just hacked together from the llvm recipe.19:16
mtahmedNot hacked but just coarsely adapted from it.19:16
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has quit IRC19:16
mtahmedI will clean it up before I *actually* start using it and then push to my fork.19:17
vmesonmtahmed: good plan! :)  . Ready when you are.19:19
*** awafaa <awafaa!uid716@gateway/web/irccloud.com/x-itnelzxzglkgaqlc> has quit IRC19:21
*** mr_science <mr_science!~sarnold@net-cf9a4e93.cst.impulse.net> has joined #yocto19:21
*** mr_science <mr_science!~sarnold@gentoo/developer/nerdboy> has joined #yocto19:22
*** n01 <n01!~n01@2-238-57-164.ip242.fastwebnet.it> has joined #yocto19:22
*** galak <galak!~galak@99-51-185-173.lightspeed.austtx.sbcglobal.net> has quit IRC19:28
*** maharvey <maharvey!~maharvey@134.134.139.70> has joined #yocto19:31
*** lexszero <lexszero!~lexszero@jabber.spbu.ru> has left #yocto19:31
*** lexszero <lexszero!~lexszero@jabber.spbu.ru> has joined #yocto19:32
*** lexszero <lexszero!~lexszero@jabber.spbu.ru> has left #yocto19:34
*** henriknj <henriknj!~hnj@henriknj.dk> has quit IRC19:35
*** jmpdelos <jmpdelos!~polk@174.22.170.198> has quit IRC19:35
*** void-dev_ <void-dev_!~voidweb@monoceres.uberspace.de> has quit IRC19:35
*** pirut <pirut!~Pirut@134.134.139.74> has quit IRC19:35
*** lexszero <lexszero!~lexszero@jabber.spbu.ru> has joined #yocto19:35
*** jmpdelos <jmpdelos!~polk@174-22-170-198.clsp.qwest.net> has joined #yocto19:37
*** pirut <pirut!~Pirut@134.134.139.74> has joined #yocto19:37
*** henriknj <henriknj!~hnj@henriknj.dk> has joined #yocto19:37
*** void-dev_ <void-dev_!~voidweb@95.143.172.184> has joined #yocto19:37
*** zenlinux <zenlinux!~sgarman@71.20.35.93> has quit IRC19:48
*** jwhitmore <jwhitmore!~jwhitmore@79.97.161.188> has joined #yocto19:51
*** mihai <mihai!~mihai@86.126.1.251> has joined #yocto19:56
*** ant_home <ant_home!~andrea@host39-62-dynamic.24-79-r.retail.telecomitalia.it> has quit IRC20:00
*** ScriptRipper <ScriptRipper!~ScriptRip@opensuse/member/MartinMohring> has quit IRC20:03
*** galak <galak!~galak@99-51-185-173.lightspeed.austtx.sbcglobal.net> has joined #yocto20:06
*** ScriptRipper1 <ScriptRipper1!~ScriptRip@178-26-43-81-dynip.superkabel.de> has joined #yocto20:07
*** ddalex <ddalex!~ddalex@84.93.174.71> has joined #yocto20:10
*** lexszero <lexszero!~lexszero@jabber.spbu.ru> has left #yocto20:22
*** jwhitmore <jwhitmore!~jwhitmore@79.97.161.188> has quit IRC20:26
*** joeythesaint <joeythesaint!~jjm@128.224.252.2> has quit IRC20:28
*** zenlinux <zenlinux!~sgarman@c-50-139-96-211.hsd1.or.comcast.net> has joined #yocto20:30
*** n01 <n01!~n01@2-238-57-164.ip242.fastwebnet.it> has quit IRC20:33
*** n01 <n01!~n01@2-238-57-164.ip242.fastwebnet.it> has joined #yocto20:33
*** walters <walters!~walters@c-66-31-18-51.hsd1.ma.comcast.net> has joined #yocto20:53
*** Crofton|work <Crofton|work!~balister@pool-108-44-82-190.ronkva.east.verizon.net> has quit IRC21:06
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC21:09
*** mihai <mihai!~mihai@86.126.1.251> has quit IRC21:09
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto21:10
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has joined #yocto21:12
*** Crofton|work <Crofton|work!~balister@pool-108-44-82-190.ronkva.east.verizon.net> has joined #yocto21:14
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has quit IRC21:17
*** ccube <ccube!ccube@nx.ccube.de> has joined #yocto21:32
ccubehi21:32
ccubeI need to change my bootstrap gcc, because 4.8 is not working for me. how can I tell yocto, to use another binary?21:33
*** JimBaxter <JimBaxter!~jbaxter@jimbax.plus.com> has quit IRC21:47
*** Circuitsoft <Circuitsoft!ccb603ee@gateway/web/freenode/ip.204.182.3.238> has joined #yocto21:53
CircuitsoftHello. I'm trying to compile a utility library for my target which uses dlfcn.h, and gcc can't find it.21:53
CircuitsoftIs it supported on eglibc?21:54
mr_scienceshould be21:55
mr_sciencei have /usr/include/dlfcn.h, /usr/include/bits/dlfcn.h, and /usr/include/tcl8.4.19/compat/dlfcn.h in my sysroot (oe-classic)21:56
*** ant_home <ant_home!~andrea@host39-62-dynamic.24-79-r.retail.telecomitalia.it> has joined #yocto22:04
*** flihp <flihp!~flihp@c-76-24-20-220.hsd1.ma.comcast.net> has quit IRC22:04
*** galak <galak!~galak@99-51-185-173.lightspeed.austtx.sbcglobal.net> has quit IRC22:15
*** darknighte_znc is now known as darknighte22:17
*** mulhern <mulhern!~mulhern@c-67-186-188-203.hsd1.ma.comcast.net> has joined #yocto22:26
*** mulhern <mulhern!~mulhern@c-67-186-188-203.hsd1.ma.comcast.net> has quit IRC22:27
*** darknighte is now known as darknighte_znc22:41
*** darknighte_znc is now known as darknighte22:47
*** smartin_ <smartin_!~smartin@ivr94-4-82-229-165-48.fbx.proxad.net> has quit IRC22:49
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has quit IRC22:52
*** maharvey_ <maharvey_!~maharvey@134.134.137.71> has joined #yocto22:54
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has joined #yocto22:58
*** maharvey <maharvey!~maharvey@134.134.139.70> has quit IRC22:58
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has quit IRC22:59
*** jwhitmore <jwhitmore!~jwhitmore@79.97.161.188> has joined #yocto22:59
*** jwhitmore <jwhitmore!~jwhitmore@79.97.161.188> has quit IRC23:04
*** oneQubit <oneQubit!~oneQubit@li439-130.members.linode.com> has quit IRC23:09
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has joined #yocto23:13
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has quit IRC23:18
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has joined #yocto23:36
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has joined #yocto23:43
*** seebs <seebs!~seebs@home.seebs.net> has quit IRC23:45
*** seebs <seebs!~seebs@home.seebs.net> has joined #yocto23:48
*** ScriptRipper1 <ScriptRipper1!~ScriptRip@178-26-43-81-dynip.superkabel.de> has quit IRC23:56
*** ScriptRipper1 <ScriptRipper1!~ScriptRip@178-26-51-16-dynip.superkabel.de> has joined #yocto23:59

Generated by irclog2html.py 2.11.0 by Marius Gedminas - find it at mg.pov.lt!