*** fenrig <fenrig!~fenrig@94-226-35-134.access.telenet.be> has joined #yocto | 00:02 | |
*** _darknighte_ <_darknighte_!~darknight@pdpc/supporter/professional/darknighte> has joined #yocto | 00:03 | |
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has quit IRC | 00:03 | |
*** _darknighte_ is now known as darknighte | 00:03 | |
*** Rootert <Rootert!~Rootert@54694E34.cm-12-2b.dynamic.ziggo.nl> has quit IRC | 00:05 | |
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has quit IRC | 00:05 | |
*** ant_home <ant_home!~andrea@host39-62-dynamic.24-79-r.retail.telecomitalia.it> has quit IRC | 00:06 | |
*** Squix <Squix!~Squix___@p021.net112139202.tokai.or.jp> has joined #yocto | 00:12 | |
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has joined #yocto | 00:27 | |
*** munch <munch!~mark@c-67-184-166-69.hsd1.il.comcast.net> has quit IRC | 00:33 | |
*** hollisb <hollisb!~hollisb@nat-wv.mentorg.com> has quit IRC | 00:38 | |
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has quit IRC | 00:38 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 00:43 | |
*** [simar|o1] <[simar|o1]!~simar@206-248-139-195.dsl.teksavvy.com> has joined #yocto | 00:52 | |
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has quit IRC | 00:55 | |
*** BCMM <BCMM!~BCMM@unaffiliated/bcmm> has quit IRC | 01:02 | |
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has joined #yocto | 01:11 | |
*** [simar|o1] <[simar|o1]!~simar@206-248-139-195.dsl.teksavvy.com> has quit IRC | 01:15 | |
*** [simar|o1] <[simar|o1]!~simar@206-248-139-195.dsl.teksavvy.com> has joined #yocto | 01:18 | |
mtahmed | vmeson: 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 IRC | 01:22 | |
mtahmed | If someone has already done something similar, that would have been very helpful. | 01:23 |
*** MDR <MDR!~mdrustad@134.134.139.74> has quit IRC | 01:28 | |
*** rogerzhou <rogerzhou!~rogerzhou@1.202.252.122> has joined #yocto | 01:29 | |
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has joined #yocto | 01:34 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC | 01:35 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto | 01:36 | |
vmeson | mtahmed: I don't know of anyone who has done this exactly. Certainly people override the open source gcc with a vendor supported one | 01:37 |
*** [simar|o1] <[simar|o1]!~simar@206-248-139-195.dsl.teksavvy.com> has quit IRC | 01:38 | |
kergoth | what are you trying to do exactly? | 01:38 |
mtahmed | kergoth: Trying to use llvm+clang for oe/poky. | 01:40 |
kergoth | as a crosscompiler toolchain, or native? | 01:41 |
mtahmed | The 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 |
mtahmed | As a cross-compiler toolchain for building the images. | 01:42 |
kergoth | afaik stock clang/llvm doesn't even support easy selection of target and corresponding sysroot yet, hence the existance of projects like ellcc | 01:42 |
kergoth | could be mistaken, though | 01:42 |
kergoth | I 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-averse | 01:42 |
* vmeson recalls seeing ellcc... a year or two ago but I thought that clang no longer needed that help. | 01:43 | |
kergoth | it'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 not | 01:43 |
kergoth | clang 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 multilib | 01:44 |
* kergoth shrugs | 01:44 | |
*** mr_science <mr_science!~sarnold@gentoo/developer/nerdboy> has quit IRC | 01:45 | |
vmeson | kergoth: 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 |
vmeson | mtahmed: http://ellcc.org/ (in case you can't use google. :) ) | 01:45 |
kergoth | http://www.embtoolkit.org/ apparently has some llvm stuff too, never tried it though | 01:45 |
kergoth | i've started trying to look at this in the past too, mostly was at the information gathering stage though | 01:45 |
kergoth | also wanted to try using musl instead of eglibc, as an experiment/exercise :) | 01:45 |
mtahmed | Haha. 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 |
kergoth | http://wiki.musl-libc.org/wiki/BuildingLLVM may be of interest for that | 01:46 |
vmeson | we 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 |
kergoth | yeah, that would work, just a separate toolchain for each target configuration, no multilib | 01:46 |
kergoth | i 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.o | 01:47 |
kergoth | sounds like a fun project though, good luck with it | 01:47 |
kergoth | will definitely be curious to hear how it goes | 01:47 |
vmeson | http://ellcc.org/viewvc/svn/ellcc/trunk/ is still active - that's good. If only they used git! | 01:48 |
kergoth | git-svn is our friend ;) | 01:48 |
kergoth | remember 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 & headers | 01:48 |
kergoth | could then move on to the more complex bootstrapping process from there | 01:49 |
kergoth | your call | 01:49 |
kergoth | but something to keep in mind | 01:49 |
kergoth | at 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 #yocto | 01:51 | |
mtahmed | Are 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 #yocto | 01:56 | |
*** Rootert <Rootert!~Rootert@54694E34.cm-12-2b.dynamic.ziggo.nl> has joined #yocto | 01:56 | |
kergoth | not sure what you mean by that | 01:57 |
kergoth | yocto always uses a non-host compiler for builds | 01:57 |
kergoth | it builds its own crosscompiler | 01:57 |
kergoth | unless 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 IRC | 01:58 | |
mtahmed | Well, I am quite noob. Then are there examples of using an external one? | 01:58 |
kergoth | you 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+clang | 01:58 |
mtahmed | Okay I could look at that. | 01:58 |
kergoth | poky includes an external toolchainc onfiguration right in it | 01:58 |
kergoth | in oe-core | 01:58 |
kergoth | but it's not well supported, and its a sourcery example, so you're better off using meta-sourcery as an example, i think | 01:59 |
mtahmed | Okay that would be (much?) easier? Just build clang separately, drop it in somewhere, and use to with the appropriate target arguments? | 01:59 |
mtahmed | And then see where/why I am getting errors (with include paths etc.) | 02:00 |
kergoth | tough 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 each | 02:00 |
* kergoth shrugs | 02:00 | |
kergoth | I've never built llvm+clang from scratch myself, so I'm no expert :) | 02:00 |
*** vmeson <vmeson!~quassel@128.224.252.2> has joined #yocto | 02:00 | |
mtahmed | I have experience with llvm+clang ... I am maintaining (some) archlinux packages for it as well. | 02:01 |
mtahmed | I have little experience with bitbake/yocto/oe/poky stuff though. | 02:01 |
mtahmed | Which is what I am seeking help with. And thanks for the tips. I need to save them somewhere now :) | 02:01 |
kergoth | no problem | 02:02 |
vmeson | git 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 |
vmeson | Repository has been moved: Repository moved permanently to '/viewvc/svn/ellcc'; please relocate at /usr/local/share/perl/5.14.2/Git/SVN.pm line 310 | 02:11 |
vmeson | tomorrowish... | 02:11 |
*** Rootert <Rootert!~Rootert@54694E34.cm-12-2b.dynamic.ziggo.nl> has quit IRC | 02:14 | |
*** seebs <seebs!~seebs@home.seebs.net> has quit IRC | 02:14 | |
*** joeythesaint <joeythesaint!~jjm@198-84-238-35.cpe.teksavvy.com> has quit IRC | 02:15 | |
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has quit IRC | 02:17 | |
*** seebs <seebs!~seebs@home.seebs.net> has joined #yocto | 02:17 | |
*** RagBal <RagBal!~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl> has joined #yocto | 02:18 | |
*** Rootert <Rootert!~Rootert@54694E34.cm-12-2b.dynamic.ziggo.nl> has joined #yocto | 02:18 | |
mtahmed | Okay. | 02:20 |
*** fenrig <fenrig!~fenrig@94-226-35-134.access.telenet.be> has quit IRC | 02:22 | |
kergoth | viewvc isn't an svn repository url, afaik, its likely the web browsing interface to it | 02:26 |
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has quit IRC | 02:26 | |
kergoth | per http://ellcc.org/blog/?p=251: % svn checkout http://ellcc.org/svn/ellcc/trunk ellcc | 02:26 |
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has joined #yocto | 02:31 | |
*** [simar|on] <[simar|on]!~simar@96.125.133.73> has joined #yocto | 02:32 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC | 02:35 | |
*** [simar|o1] <[simar|o1]!~simar@206-248-139-195.dsl.teksavvy.com> has joined #yocto | 02:37 | |
*** [simar|on] <[simar|on]!~simar@96.125.133.73> has quit IRC | 02:40 | |
*** challinan <challinan!~challinan@173-10-226-189-BusName-WestFlorida.hfc.comcastbusiness.net> has quit IRC | 02:44 | |
*** rogerzhou <rogerzhou!~rogerzhou@1.202.252.122> has quit IRC | 03:06 | |
Crofton|work | Do you guys have any idea how har dit is to figure out how old OE is :) | 03:10 |
Crofton|work | This may be the best date I have: http://developer.berlios.de/projects/bitbake | 03:11 |
*** Garibaldi|work <Garibaldi|work!~andydalt@nat/cisco/x-zvoxrzngsqwjpgbu> has quit IRC | 03:13 | |
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has joined #yocto | 03:13 | |
kergoth | Crofton|work: first commit in the bitbake repo, which goes back to the bitkeeper days, is feb 2003 | 03:13 |
kergoth | i started work on a timeline at one point, but i can't seem to figure out where i put it | 03:13 |
Crofton|work | feel free to correct my email to the yocto list :) | 03:13 |
kergoth | at 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 |
kergoth | also some of the old wiki pages out of the wayback machine | 03:14 |
*** maharvey <maharvey!~maharvey@134.134.139.74> has quit IRC | 03:14 | |
Crofton|work | if you find that agina, it would be handy for me to have as a reference | 03:14 |
Crofton|work | we've come a long way, but I want to make sure people do not forget the path we took to get here | 03:15 |
*** [simar|o1] <[simar|o1]!~simar@206-248-139-195.dsl.teksavvy.com> has quit IRC | 03:16 | |
*** willwillson <willwillson!~smuxi@host81-151-11-193.range81-151.btcentralplus.com> has quit IRC | 03:18 | |
*** behanw <behanw!~behanw@S01067cb21b219d94.gv.shawcable.net> has quit IRC | 03:22 | |
*** rogerzhou <rogerzhou!~rogerzhou@1.202.252.122> has joined #yocto | 03:22 | |
*** [simar|o1] <[simar|o1]!~simar@96.125.133.73> has joined #yocto | 03:25 | |
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has quit IRC | 03:28 | |
*** [simar|on] <[simar|on]!~simar@69.166.24.103> has joined #yocto | 03:30 | |
*** [simar|o1] <[simar|o1]!~simar@96.125.133.73> has quit IRC | 03:31 | |
*** Jefro <Jefro!~jefro@50-0-152-82.dedicated.static.sonic.net> has joined #yocto | 03:34 | |
*** behanw <behanw!~behanw@S01067cb21b219d94.gv.shawcable.net> has joined #yocto | 03:34 | |
*** ynezz_ <ynezz_!ynezz@ibawizard.net> has joined #yocto | 03:47 | |
*** shoragan <shoragan!~jlu@debian/developer/shoragan> has quit IRC | 03:47 | |
*** BSDCat <BSDCat!~unique@calvin.idempot.net> has joined #yocto | 03:47 | |
*** shoragan <shoragan!~jlu@debian/developer/shoragan> has joined #yocto | 03:48 | |
*** _darknighte_ <_darknighte_!~darknight@pdpc/supporter/professional/darknighte> has joined #yocto | 03:49 | |
*** chris_wrs_sd1 <chris_wrs_sd1!~CBuerger@ip72-192-153-82.sd.sd.cox.net> has joined #yocto | 03:51 | |
*** slips_ <slips_!~slips@95.130.216.34> has joined #yocto | 03:51 | |
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has quit IRC | 03:52 | |
*** chris_wrs_sd <chris_wrs_sd!~CBuerger@ip72-192-153-82.sd.sd.cox.net> has quit IRC | 03:52 | |
*** mthalmei_away <mthalmei_away!~mthalmei@ex4.michisoft.net> has quit IRC | 03:52 | |
*** BSDCat_ <BSDCat_!~unique@calvin.idempot.net> has quit IRC | 03:52 | |
*** slips <slips!~slips@95.130.216.34> has quit IRC | 03:52 | |
*** eren <eren!~eren@unaffiliated/eren> has quit IRC | 03:52 | |
*** ynezz <ynezz!ynezz@ibawizard.net> has quit IRC | 03:52 | |
*** reaperofsouls <reaperofsouls!~reaperofs@64.2.3.195.ptr.us.xo.net> has quit IRC | 03:52 | |
*** sakoman <sakoman!~steve@static-74-41-60-154.dsl1.pco.ca.frontiernet.net> has quit IRC | 03:52 | |
*** reaperofsouls <reaperofsouls!~reaperofs@64.2.3.195.ptr.us.xo.net> has joined #yocto | 03:53 | |
*** _darknighte_ is now known as darknighte | 03:53 | |
*** [simar|o1] <[simar|o1]!~simar@206-248-139-195.dsl.teksavvy.com> has joined #yocto | 03:55 | |
*** mthalmei_away <mthalmei_away!~mthalmei@ex4.michisoft.net> has joined #yocto | 03:56 | |
*** [simar|on] <[simar|on]!~simar@69.166.24.103> has quit IRC | 03:58 | |
*** sakoman <sakoman!~steve@static-74-41-60-154.dsl1.pco.ca.frontiernet.net> has joined #yocto | 03:58 | |
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has joined #yocto | 04:00 | |
*** [simar|o1] <[simar|o1]!~simar@206-248-139-195.dsl.teksavvy.com> has quit IRC | 04:00 | |
*** rogerzhou <rogerzhou!~rogerzhou@1.202.252.122> has quit IRC | 04:01 | |
*** eren <eren!~eren@unaffiliated/eren> has joined #yocto | 04:04 | |
*** Jefro <Jefro!~jefro@50-0-152-82.dedicated.static.sonic.net> has quit IRC | 04:12 | |
*** rogerzhou <rogerzhou!~rogerzhou@1.202.252.122> has joined #yocto | 04:14 | |
*** jmpdelos <jmpdelos!~polk@174-22-170-198.clsp.qwest.net> has quit IRC | 04:23 | |
*** jmpdelos <jmpdelos!~polk@174.22.170.198> has joined #yocto | 04:23 | |
*** Jefro <Jefro!~jefro@50-0-152-82.dedicated.static.sonic.net> has joined #yocto | 04:30 | |
*** Jefro <Jefro!~jefro@50-0-152-82.dedicated.static.sonic.net> has quit IRC | 05:01 | |
vmeson | kergoth: 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 #yocto | 05:21 | |
*** [simar|o1] <[simar|o1]!~simar@206-248-139-195.dsl.teksavvy.com> has joined #yocto | 05:28 | |
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has quit IRC | 05:32 | |
*** nitink <nitink!~nitink@134.134.139.70> has quit IRC | 05:44 | |
*** [simar|on] <[simar|on]!~simar@69.166.24.103> has joined #yocto | 05:47 | |
*** [simar|o1] <[simar|o1]!~simar@206-248-139-195.dsl.teksavvy.com> has quit IRC | 05:50 | |
*** ynezz_ is now known as ynezz | 05:51 | |
*** [simar|on] <[simar|on]!~simar@69.166.24.103> has quit IRC | 05:52 | |
*** [simar|o1] <[simar|o1]!~simar@96.125.133.73> has joined #yocto | 05:52 | |
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has joined #yocto | 06:00 | |
*** nitink <nitink!~nitink@134.134.139.76> has joined #yocto | 06:01 | |
*** [simar|o1] <[simar|o1]!~simar@96.125.133.73> has quit IRC | 06:03 | |
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has quit IRC | 06:06 | |
*** [simar|o1] <[simar|o1]!~simar@69.166.24.103> has joined #yocto | 06:18 | |
*** GusBricker <GusBricker!~GusBricke@CPE-120-148-198-99.heum1.vic.bigpond.net.au> has quit IRC | 06:21 | |
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has quit IRC | 06:22 | |
*** agust <agust!~agust@p4FDE6A1B.dip0.t-ipconnect.de> has joined #yocto | 06:23 | |
*** n01 <n01!~n01@2-238-57-164.ip242.fastwebnet.it> has joined #yocto | 06:36 | |
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has joined #yocto | 06:38 | |
*** Squix <Squix!~Squix___@p021.net112139202.tokai.or.jp> has quit IRC | 06:40 | |
*** [simar|o1] <[simar|o1]!~simar@69.166.24.103> has quit IRC | 06:41 | |
*** n01 <n01!~n01@2-238-57-164.ip242.fastwebnet.it> has quit IRC | 06:47 | |
*** tor <tor!~tor@c-d567e655.125-1-64736c10.cust.bredbandsbolaget.se> has joined #yocto | 06:57 | |
*** tc_ <tc_!~quassel@194.17.253.121> has quit IRC | 07:13 | |
*** brm123 <brm123!~androirc@155.250.69.111.dynamic.snap.net.nz> has joined #yocto | 07:19 | |
brm123 | Hey guys, anyone know how to patch files that are not in tmp/work/beaglebone/ I.e nano ... ? | 07:21 |
brm123 | I.e in the arm7... directory .. | 07:22 |
nerdboy | as in do_patch? | 07:24 |
nerdboy | you can sed/awk/manual stuff in SYSROOT/blah but that's definitely a hack | 07:25 |
*** Zagor <Zagor!~bjst@sestofw01.enea.se> has joined #yocto | 07:25 | |
*** Zagor <Zagor!~bjst@rockbox/developer/Zagor> has joined #yocto | 07:25 | |
nerdboy | what exactly do you think you need to do? | 07:25 |
*** behanw <behanw!~behanw@S01067cb21b219d94.gv.shawcable.net> has quit IRC | 07:26 | |
brm123 | I 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 |
nerdboy | you would patch nano with a nano_X.X.bbappend | 07:28 |
brm123 | Or any other source in tmp/work/arm7 .... | 07:28 |
nerdboy | you can add custom functions to recipes if really want control | 07:28 |
brm123 | Yep I know, it appears to work, I.e no compile error, but patch is not applied | 07:28 |
nerdboy | but it sounds like all you need is a small bbappend with a patch file in it | 07:29 |
brm123 | I di that it does not work | 07:29 |
nerdboy | then something's wrong with the recipe | 07:29 |
nerdboy | what does your SRC_URI look like? | 07:29 |
brm123 | I have similar patches for the linux kernel, they all work | 07:29 |
nerdboy | SRC_URI_append and SRC_URI+= should both work | 07:30 |
nerdboy | the former is probably preferred | 07:30 |
brm123 | SRC_URI += file://parch | 07:31 |
*** sameo <sameo!~samuel@192.55.54.36> has quit IRC | 07:32 | |
nerdboy | try _append instead | 07:32 |
nerdboy | and don't forget the quotea | 07:33 |
brm123 | Ok, but += works for other .bbapend files | 07:33 |
brm123 | Yep have the quotes | 07:33 |
nerdboy | seems like a remember a couple of cases where it didn't | 07:33 |
nerdboy | SRC_URI_append = "file://parch" <= try that | 07:34 |
brm123 | Ok, will do thanks .. | 07:34 |
*** SorenHolm <SorenHolm!~quassel@cpe.ge-0-2-0-950.faaqnqu1.dk.customer.tdc.net> has joined #yocto | 07:34 | |
*** ant_work <ant_work!~ant@host54-128-static.10-188-b.business.telecomitalia.it> has joined #yocto | 07:35 | |
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has quit IRC | 07:39 | |
*** brm123 <brm123!~androirc@155.250.69.111.dynamic.snap.net.nz> has quit IRC | 07:40 | |
*** rogerzhou <rogerzhou!~rogerzhou@1.202.252.122> has quit IRC | 07:40 | |
*** zeeblex <zeeblex!apalalax@nat/intel/x-ldqkxilfgbvaihnc> has joined #yocto | 07:42 | |
*** panda84kde <panda84kde!~diego@static-217-133-170-65.clienti.tiscali.it> has joined #yocto | 07:44 | |
*** n01 <n01!~n01@host43-8-static.10-188-b.business.telecomitalia.it> has joined #yocto | 07:51 | |
*** rogerzhou <rogerzhou!~rogerzhou@1.202.252.122> has joined #yocto | 07:52 | |
*** eballetbo <eballetbo!~eballetbo@43.Red-2-139-180.staticIP.rima-tde.net> has joined #yocto | 07:58 | |
*** elmi82 <elmi82!~timo@mail.bmw-carit.de> has joined #yocto | 08:04 | |
*** roric <roric!~roric@c-107ae455.213-3-64736c14.cust.bredbandsbolaget.se> has quit IRC | 08:07 | |
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has joined #yocto | 08:13 | |
*** B4gder <B4gder!~daniel@sestofw01.enea.se> has joined #yocto | 08:14 | |
*** erbo <erbo!~erik@host.62.65.125.245.bitcom.se> has joined #yocto | 08:18 | |
*** n01 <n01!~n01@host43-8-static.10-188-b.business.telecomitalia.it> has quit IRC | 08:19 | |
*** n01 <n01!~n01@host225-0-static.96-5-b.business.telecomitalia.it> has joined #yocto | 08:20 | |
*** blitz00 <blitz00!~stefans@192.198.151.43> has joined #yocto | 08:23 | |
*** blitz00 <blitz00!~stefans@unaffiliated/blitz00> has joined #yocto | 08:23 | |
*** florian_kc <florian_kc!~fuchs@port-217-146-132-69.static.qsc.de> has joined #yocto | 08:25 | |
*** florian_kc <florian_kc!~fuchs@Maemo/community/contributor/florian> has joined #yocto | 08:25 | |
*** florian_kc is now known as florian | 08:25 | |
*** jwhitmore <jwhitmore!~jwhitmore@79.97.161.188> has joined #yocto | 08:26 | |
*** roric <roric!~roric@c-919f70d5.013-177-67626713.cust.bredbandsbolaget.se> has joined #yocto | 08:39 | |
*** sameo <sameo!samuel@nat/intel/x-vjpxhqiiedyjqorx> has joined #yocto | 08:40 | |
*** mckoan|away is now known as mckoan | 08:44 | |
*** jwhitmore <jwhitmore!~jwhitmore@79.97.161.188> has quit IRC | 08:44 | |
mckoan | good morning | 08:44 |
*** fpaut <fpaut!~fpaut@LVelizy-156-44-42-252.w217-128.abo.wanadoo.fr> has joined #yocto | 08:45 | |
*** rainerschuster <rainerschuster!~Adium@pD951B77A.dip0.t-ipconnect.de> has joined #yocto | 08:49 | |
TuTizz | morning all | 08:53 |
*** rogerzhou <rogerzhou!~rogerzhou@1.202.252.122> has quit IRC | 08:54 | |
TuTizz | Can 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 #yocto | 09:05 | |
*** rogerzhou <rogerzhou!~rogerzhou@1.202.252.122> has joined #yocto | 09:06 | |
*** kmn <kmn!~knikkane@2001:998:22:0:7c64:d547:de07:d746> has quit IRC | 09:12 | |
*** fpaut is now known as fpaut_ | 09:12 | |
*** Pellefanatisk <Pellefanatisk!52c4c692@gateway/web/freenode/ip.82.196.198.146> has joined #yocto | 09:20 | |
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has joined #yocto | 09:26 | |
*** fenrig <fenrig!~fenrig@d51A51A58.access.telenet.be> has joined #yocto | 09:31 | |
drasko | hi all. When I run bitbake busybox -c menuconfig, ncurses are confused, everything is misaligned | 09:33 |
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has joined #yocto | 09:33 | |
ndec | TuTizz: 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 |
ndec | however, 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 #yocto | 09:36 | |
ndec | ok, it doesn't seem to be the case for qt4.inc, it's included once. | 09:36 |
drasko | can it be messed locale? | 09:37 |
drasko | how to fix this? | 09:37 |
*** jonatan <jonatan!~quassel@194.237.7.146> has joined #yocto | 09:37 | |
*** [simar|on] <[simar|on]!~simar@206-248-139-195.dsl.teksavvy.com> has quit IRC | 09:38 | |
*** bluelightning <bluelightning!~paul@83.217.123.106> has joined #yocto | 09:40 | |
*** bluelightning <bluelightning!~paul@83.217.123.106> has quit IRC | 09:40 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has joined #yocto | 09:40 | |
*** beaver_545 <beaver_545!~stuart@82.148.40.66> has joined #yocto | 09:50 | |
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has quit IRC | 09:54 | |
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has joined #yocto | 09:57 | |
*** Pablooooo <Pablooooo!~chatzilla@static-88.131.62.43.addr.tdcsong.se> has joined #yocto | 10:00 | |
drasko | anyone on the channel ? | 10:08 |
tobiash | drasko: did you try a different terminal? | 10:10 |
drasko | tobiash, not | 10:10 |
*** ddalex1 <ddalex1!~ddalex@84.93.174.71> has joined #yocto | 10:10 | |
drasko | I am trying to find do_meniuconfig() for BUsybox | 10:10 |
drasko | I do not find it | 10:10 |
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has quit IRC | 10:11 | |
*** fpaut_ is now known as fpaut | 10:11 | |
tobiash | drasko: it's in cml1.bbclass | 10:12 |
drasko | tobiash, I do not get how for Linux menuconfig works nicely | 10:12 |
drasko | and for Busybox not | 10:13 |
drasko | same terminal... | 10:13 |
bluelightning | morning all | 10:13 |
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has joined #yocto | 10:15 | |
drasko | tobiash, in meta/recipes-core/busybox/busybox.inc I can see just cml1_do_configure | 10:18 |
drasko | However I can not find where it calls menuconfig | 10:18 |
drasko | I also can not find where kernel recipes inherit cml1 | 10:19 |
drasko | Because 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 IRC | 10:20 | |
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has joined #yocto | 10:23 | |
tobiash | drasko: the addtask for menuconfig is in the cml1.bbclass which is called by you as you called bitbake with -c menuconfig | 10:30 |
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has quit IRC | 10:31 | |
*** JimBaxter <JimBaxter!~jbaxter@jimbax.plus.com> has joined #yocto | 10:31 | |
drasko | tobiash, I can see that. I just can not see where kernel recipes inherist cml1.bbclass | 10:32 |
drasko | *inherit | 10:32 |
*** fpaut is now known as fpaut_ | 10:32 | |
*** Pablooooo <Pablooooo!~chatzilla@static-88.131.62.43.addr.tdcsong.se> has quit IRC | 10:37 | |
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has joined #yocto | 10:42 | |
*** fpaut_ is now known as fpaut | 10:45 | |
*** fpaut is now known as fpaut_ | 10:47 | |
*** fpaut_ is now known as fpaut | 10:47 | |
*** SorenHolm <SorenHolm!~quassel@cpe.ge-0-2-0-950.faaqnqu1.dk.customer.tdc.net> has quit IRC | 10:47 | |
*** SorenHolm <SorenHolm!~quassel@cpe.ge-0-2-0-950.faaqnqu1.dk.customer.tdc.net> has joined #yocto | 10:49 | |
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has quit IRC | 10:52 | |
*** rogerzhou <rogerzhou!~rogerzhou@1.202.252.122> has quit IRC | 10:58 | |
drasko | Hi all, I can not see ldd tool in my sdk | 11:01 |
drasko | where is it located in yocto | 11:01 |
*** fenrig <fenrig!~fenrig@d51A51A58.access.telenet.be> has quit IRC | 11:04 | |
*** Stygia <Stygia!~gmpsaifi@109.57.144.141.mobile.3.dk> has joined #yocto | 11:07 | |
*** mulhern <mulhern!~mulhern@c-67-186-188-203.hsd1.ma.comcast.net> has joined #yocto | 11:11 | |
ant_work | drasko: https://lists.yoctoproject.org/pipermail/yocto/2013-November/017149.html | 11:13 |
*** Stygia <Stygia!~gmpsaifi@109.57.144.141.mobile.3.dk> has quit IRC | 11:13 | |
drasko | ant_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 IRC | 11:14 | |
drasko | In order to obtain readelf | 11:14 |
*** Stygia <Stygia!~gmpsaifi@109.57.144.141.mobile.3.dk> has joined #yocto | 11:14 | |
*** mihai <mihai!~mihai@80.97.15.150> has quit IRC | 11:14 | |
*** Stygia <Stygia!~gmpsaifi@109.57.144.141.mobile.3.dk> has quit IRC | 11:25 | |
*** reaperofsouls <reaperofsouls!~reaperofs@64.2.3.195.ptr.us.xo.net> has quit IRC | 11:30 | |
*** reaperofsouls <reaperofsouls!~reaperofs@64.2.3.195.ptr.us.xo.net> has joined #yocto | 11:30 | |
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has joined #yocto | 11:38 | |
*** tinti <tinti!~tinti@pdpc/supporter/student/tinti> has joined #yocto | 11:46 | |
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has quit IRC | 11:47 | |
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has joined #yocto | 11:50 | |
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has joined #yocto | 11:54 | |
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has quit IRC | 11:58 | |
*** rainerschuster <rainerschuster!~Adium@pD951B77A.dip0.t-ipconnect.de> has quit IRC | 12:04 | |
bluelightning | JaMa: FYI: https://bugzilla.yoctoproject.org/show_bug.cgi?id=5546 | 12:10 |
yocti | Bug 5546: enhancement, Undecided, ---, paul.eggleton, NEW , Optimise away meta-oe X init mechanism | 12:10 |
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has quit IRC | 12:11 | |
*** rainerschuster <rainerschuster!~Adium@pD951B77A.dip0.t-ipconnect.de> has joined #yocto | 12:15 | |
*** tinti <tinti!~tinti@pdpc/supporter/student/tinti> has quit IRC | 12:17 | |
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has joined #yocto | 12:21 | |
JaMa | bluelightning: thx | 12:23 |
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has joined #yocto | 12:26 | |
*** sunfunbaby <sunfunbaby!~Thunderbi@host-217-197-199-22.rev.as20985.net> has quit IRC | 12:39 | |
*** tlwoerner <tlwoerner!~trevor@linaro/tlwoerner> has quit IRC | 12:51 | |
*** tlwoerner <tlwoerner!~trevor@linaro/tlwoerner> has joined #yocto | 12:52 | |
TuTizz | thanks ndec. I will try that | 13:00 |
*** joeythesaint <joeythesaint!~jjm@128.224.252.2> has joined #yocto | 13:04 | |
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has quit IRC | 13:09 | |
*** mihai <mihai!~mihai@80.97.15.150> has joined #yocto | 13:25 | |
*** kmn <kmn!~knikkane@2001:998:22:0:f104:f35:d821:2207> has joined #yocto | 13:39 | |
*** ddalex1 <ddalex1!~ddalex@84.93.174.71> has quit IRC | 13:50 | |
*** SorenHolm <SorenHolm!~quassel@cpe.ge-0-2-0-950.faaqnqu1.dk.customer.tdc.net> has quit IRC | 13:51 | |
*** jcmuller <jcmuller!c02c551c@gateway/web/freenode/ip.192.44.85.28> has joined #yocto | 14:10 | |
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has quit IRC | 14:13 | |
*** jcmuller <jcmuller!c02c551c@gateway/web/freenode/ip.192.44.85.28> has quit IRC | 14:17 | |
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has joined #yocto | 14:19 | |
*** B4gder <B4gder!~daniel@sestofw01.enea.se> has quit IRC | 14:27 | |
*** maharvey <maharvey!~maharvey@134.134.137.75> has quit IRC | 14:30 | |
*** maharvey_ <maharvey_!maharvey@nat/intel/x-lgmgbscpqbjckgar> has joined #yocto | 14:30 | |
*** sakoman <sakoman!~steve@static-74-41-60-154.dsl1.pco.ca.frontiernet.net> has quit IRC | 14:35 | |
*** sakoman <sakoman!~steve@static-74-41-60-154.dsl1.pco.ca.frontiernet.net> has joined #yocto | 14:37 | |
*** Garibaldi|work <Garibaldi|work!~andydalt@nat/cisco/x-zddizaetqqzdfams> has joined #yocto | 14:45 | |
*** likewise <likewise!~likewise@h230004.upc-h.chello.nl> has joined #yocto | 14:51 | |
*** Zagor <Zagor!~bjst@rockbox/developer/Zagor> has quit IRC | 14:56 | |
*** Garibaldi|work <Garibaldi|work!~andydalt@nat/cisco/x-zddizaetqqzdfams> has quit IRC | 14:58 | |
*** walters <walters!~walters@c-66-31-18-51.hsd1.ma.comcast.net> has joined #yocto | 15:01 | |
*** diego <diego!~diego@static-217-133-170-65.clienti.tiscali.it> has joined #yocto | 15:02 | |
*** diego is now known as Guest4627 | 15:02 | |
*** panda84kde <panda84kde!~diego@static-217-133-170-65.clienti.tiscali.it> has quit IRC | 15:06 | |
*** Guest4627 is now known as panda84kde | 15:06 | |
*** oneQubit <oneQubit!~oneQubit@li439-130.members.linode.com> has joined #yocto | 15:08 | |
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has quit IRC | 15:09 | |
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has joined #yocto | 15:10 | |
*** munch <munch!~mark@c-67-184-166-69.hsd1.il.comcast.net> has joined #yocto | 15:13 | |
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has quit IRC | 15:14 | |
*** Pellefanatisk <Pellefanatisk!52c4c692@gateway/web/freenode/ip.82.196.198.146> has quit IRC | 15:15 | |
*** vmeson <vmeson!~quassel@128.224.252.2> has quit IRC | 15:17 | |
*** vmeson <vmeson!~quassel@128.224.252.2> has joined #yocto | 15:19 | |
mtahmed | kergoth: 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 |
mtahmed | Or would I need to replicate what it does? | 15:20 |
*** likewise <likewise!~likewise@h230004.upc-h.chello.nl> has quit IRC | 15:24 | |
*** jwhitmore <jwhitmore!~jwhitmore@79.97.161.188> has joined #yocto | 15:25 | |
*** ant_work <ant_work!~ant@host54-128-static.10-188-b.business.telecomitalia.it> has quit IRC | 15:31 | |
*** henriknj <henriknj!~hnj@henriknj.dk> has joined #yocto | 15:37 | |
*** behanw <behanw!~behanw@S01067cb21b219d94.gv.shawcable.net> has joined #yocto | 15:47 | |
kergoth | mtahmed: there are likely at least some assumptions in that about the layout ofthe toolchain. you're certainly ewlcomet o try | 15:47 |
*** eballetbo <eballetbo!~eballetbo@43.Red-2-139-180.staticIP.rima-tde.net> has quit IRC | 15:51 | |
mtahmed | kergoth: I am trying to understand how the CC, CXX etc. variables are set and how autotools etc. uses them. | 15:53 |
mtahmed | From what I understand so far, recipes include autotools. And it magically builds everything for them using some compiler. | 15:54 |
mtahmed | I am still trying to understand how it determines what compiler to use etc. | 15:55 |
mtahmed | I am also trying to see how the PROVIDES/DEPENDS variables work. | 16:01 |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto | 16:02 | |
*** acidfu <acidfu!~nib@unaffiliated/acidmen> has quit IRC | 16:03 | |
*** tor <tor!~tor@c-d567e655.125-1-64736c10.cust.bredbandsbolaget.se> has quit IRC | 16:11 | |
*** seebs <seebs!~seebs@home.seebs.net> has quit IRC | 16:12 | |
*** diego_ <diego_!~diego@static-217-133-170-65.clienti.tiscali.it> has joined #yocto | 16:13 | |
*** diego_ <diego_!~diego@static-217-133-170-65.clienti.tiscali.it> has quit IRC | 16:14 | |
*** seebs <seebs!~seebs@home.seebs.net> has joined #yocto | 16:15 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto | 16:15 | |
*** darknighte is now known as darknighte_znc | 16:16 | |
*** panda84kde <panda84kde!~diego@static-217-133-170-65.clienti.tiscali.it> has quit IRC | 16:18 | |
*** Jefro <Jefro!~jefro@50-0-152-82.dedicated.static.sonic.net> has joined #yocto | 16:20 | |
kergoth | mtahmed: read bitbake.conf in oe-core | 16:20 |
*** jwhitmore <jwhitmore!~jwhitmore@79.97.161.188> has quit IRC | 16:21 | |
*** florian <florian!~fuchs@Maemo/community/contributor/florian> has quit IRC | 16:21 | |
mtahmed | kergoth: 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 #yocto | 16:29 | |
*** sameo <sameo!samuel@nat/intel/x-vjpxhqiiedyjqorx> has quit IRC | 16:47 | |
*** ant_home <ant_home!~andrea@host39-62-dynamic.24-79-r.retail.telecomitalia.it> has joined #yocto | 16:47 | |
*** lexszero <lexszero!~lexszero@jabber.spbu.ru> has joined #yocto | 16:51 | |
*** zenlinux <zenlinux!~sgarman@c-50-139-96-211.hsd1.or.comcast.net> has quit IRC | 16:52 | |
lexszero | hmm. 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 |
lexszero | git-server.local is a valid hostname of our corporate git server | 17:01 |
TuTizz | hi, 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|away | 17:07 | |
LetoThe2nd | is this a known thing when trying to eclipse-adt debug against qemuarm? "Could not determine GDB version after sending: gdb --version" | 17:09 |
LetoThe2nd | running works fine, it also seems to start the gdbserver, but fails with the given error message to debug | 17:09 |
kergoth | lexszero: that's not a valid url | 17:10 |
kergoth | lexszero: you can't use a : seprator between a host and path in a url | 17:10 |
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has joined #yocto | 17:11 | |
kergoth | lexszero: change that ot a / and you'll be fine | 17:11 |
kergoth | also, it sounds like you want ssh protocol, not git://, so add ;protocol=ssh | 17:11 |
kergoth | so git://git@git-server.local/somerepo;protocol=ssh | 17:11 |
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has quit IRC | 17:15 | |
*** fray <fray!U2FsdGVkX1@gate.crashing.org> has joined #yocto | 17:16 | |
*** galak <galak!~galak@99-51-185-173.lightspeed.austtx.sbcglobal.net> has joined #yocto | 17:20 | |
*** mr_science <mr_science!~sarnold@gentoo/developer/nerdboy> has joined #yocto | 17:21 | |
*** jackmitchell <jackmitchell!~Thunderbi@cbnluk-gw0.cambridgebroadband.com> has quit IRC | 17:22 | |
lexszero | kergoth: 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 #yocto | 17:24 | |
*** zenlinux <zenlinux!~sgarman@71.20.35.93> has joined #yocto | 17:24 | |
*** elmi82 <elmi82!~timo@mail.bmw-carit.de> has quit IRC | 17:26 | |
*** beaver_545 <beaver_545!~stuart@82.148.40.66> has quit IRC | 17:30 | |
mr_science | kergoth: do you normally have VM enabled in the kernel even with no physical swap device? | 17:35 |
kergoth | I don't understand the question | 17:37 |
*** ddalex <ddalex!~ddalex@84.93.174.71> has joined #yocto | 17:40 | |
mr_science | apparently our default kernel config has no swap enabled at all | 17:40 |
mr_science | for the TI8168 machine | 17:40 |
mr_science | whereas i do enable swap and use zram on an even "smaller" machine | 17:41 |
*** roric <roric!~roric@c-919f70d5.013-177-67626713.cust.bredbandsbolaget.se> has quit IRC | 17:41 | |
kergoth | ah. i usually leave it enabled myself, just in case. i doubt there's much impact to doing so | 17:42 |
mr_science | seems like we hit a case where the kernel took a dump and kworker sucked up almost all of the cpu | 17:48 |
mr_science | wasn'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 IRC | 17:49 | |
*** hollisb <hollisb!~hollisb@c-50-139-17-21.hsd1.or.comcast.net> has quit IRC | 17:49 | |
kergoth | huh, interesting | 17:53 |
mr_science | dmesg from that machine only shows the TI graphics blob spew and usbnet | 17:54 |
*** vmeson <vmeson!~quassel@128.224.252.2> has quit IRC | 17:54 | |
mr_science | mostly "VPSS_GRPX blah" over and over again... | 17:55 |
*** zeeblex <zeeblex!apalalax@nat/intel/x-ldqkxilfgbvaihnc> has left #yocto | 17:55 | |
* mr_science hates on unsupported TI graphics | 17:55 | |
*** vmeson <vmeson!~quassel@128.224.252.2> has joined #yocto | 17:56 | |
*** ddalex <ddalex!~ddalex@84.93.174.71> has quit IRC | 17:56 | |
*** TuTizz <TuTizz!~TuTizz@46.18.96.158> has quit IRC | 17:58 | |
*** mihai <mihai!~mihai@80.97.15.150> has quit IRC | 17:59 | |
*** mr_science <mr_science!~sarnold@gentoo/developer/nerdboy> has quit IRC | 18:15 | |
*** Garibaldi|work <Garibaldi|work!~andydalt@nat/cisco/x-ebwxqygmzdlwjkqg> has joined #yocto | 18:22 | |
*** mr_science <mr_science!~sarnold@net-cf9a4e93.cst.impulse.net> has joined #yocto | 18:25 | |
*** mr_science <mr_science!~sarnold@gentoo/developer/nerdboy> has joined #yocto | 18:25 | |
*** fpaut <fpaut!~fpaut@LVelizy-156-44-42-252.w217-128.abo.wanadoo.fr> has left #yocto | 18:27 | |
*** Stygia <Stygia!~gmpsaifi@x1-6-00-21-9b-e8-d0-5a.k663.webspeed.dk> has quit IRC | 18:29 | |
*** bluelightning <bluelightning!~paul@pdpc/supporter/professional/bluelightning> has quit IRC | 18:40 | |
*** roric <roric!~roric@c-107ae455.213-3-64736c14.cust.bredbandsbolaget.se> has joined #yocto | 18:45 | |
*** maharvey <maharvey!maharvey@nat/intel/x-jlmzrquxaqwwgcvk> has joined #yocto | 18:51 | |
*** walters <walters!~walters@c-66-31-18-51.hsd1.ma.comcast.net> has quit IRC | 18:51 | |
*** maharvey_ <maharvey_!maharvey@nat/intel/x-lgmgbscpqbjckgar> has quit IRC | 18:55 | |
*** willwillson <willwillson!~smuxi@host81-151-11-193.range81-151.btcentralplus.com> has joined #yocto | 19:03 | |
*** maharvey <maharvey!maharvey@nat/intel/x-jlmzrquxaqwwgcvk> has quit IRC | 19:03 | |
*** smartin_ <smartin_!~smartin@ivr94-4-82-229-165-48.fbx.proxad.net> has joined #yocto | 19:06 | |
*** mr_science <mr_science!~sarnold@gentoo/developer/nerdboy> has quit IRC | 19:09 | |
vmeson | mtahmed: it's be good to get a github page up now that you have a clang recipe | 19:11 |
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has joined #yocto | 19:11 | |
vmeson | I'd clone it and build locally so you'd have one user at least. :) | 19:12 |
vmeson | also, fyi for anyone following along, fray suggested that mtahmed start with http://www.openembedded.org/wiki/Adding_a_secondary_toolchain | 19:14 |
mtahmed | vmeson: I already "forked" poky. | 19:15 |
mtahmed | https://github.com/mtahmed | 19:15 |
mtahmed | But haven't push my clang recipe there yet. | 19:15 |
mtahmed | It's not very clean and just hacked together from the llvm recipe. | 19:16 |
mtahmed | Not hacked but just coarsely adapted from it. | 19:16 |
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has quit IRC | 19:16 | |
mtahmed | I will clean it up before I *actually* start using it and then push to my fork. | 19:17 |
vmeson | mtahmed: good plan! :) . Ready when you are. | 19:19 |
*** awafaa <awafaa!uid716@gateway/web/irccloud.com/x-itnelzxzglkgaqlc> has quit IRC | 19:21 | |
*** mr_science <mr_science!~sarnold@net-cf9a4e93.cst.impulse.net> has joined #yocto | 19:21 | |
*** mr_science <mr_science!~sarnold@gentoo/developer/nerdboy> has joined #yocto | 19:22 | |
*** n01 <n01!~n01@2-238-57-164.ip242.fastwebnet.it> has joined #yocto | 19:22 | |
*** galak <galak!~galak@99-51-185-173.lightspeed.austtx.sbcglobal.net> has quit IRC | 19:28 | |
*** maharvey <maharvey!~maharvey@134.134.139.70> has joined #yocto | 19:31 | |
*** lexszero <lexszero!~lexszero@jabber.spbu.ru> has left #yocto | 19:31 | |
*** lexszero <lexszero!~lexszero@jabber.spbu.ru> has joined #yocto | 19:32 | |
*** lexszero <lexszero!~lexszero@jabber.spbu.ru> has left #yocto | 19:34 | |
*** henriknj <henriknj!~hnj@henriknj.dk> has quit IRC | 19:35 | |
*** jmpdelos <jmpdelos!~polk@174.22.170.198> has quit IRC | 19:35 | |
*** void-dev_ <void-dev_!~voidweb@monoceres.uberspace.de> has quit IRC | 19:35 | |
*** pirut <pirut!~Pirut@134.134.139.74> has quit IRC | 19:35 | |
*** lexszero <lexszero!~lexszero@jabber.spbu.ru> has joined #yocto | 19:35 | |
*** jmpdelos <jmpdelos!~polk@174-22-170-198.clsp.qwest.net> has joined #yocto | 19:37 | |
*** pirut <pirut!~Pirut@134.134.139.74> has joined #yocto | 19:37 | |
*** henriknj <henriknj!~hnj@henriknj.dk> has joined #yocto | 19:37 | |
*** void-dev_ <void-dev_!~voidweb@95.143.172.184> has joined #yocto | 19:37 | |
*** zenlinux <zenlinux!~sgarman@71.20.35.93> has quit IRC | 19:48 | |
*** jwhitmore <jwhitmore!~jwhitmore@79.97.161.188> has joined #yocto | 19:51 | |
*** mihai <mihai!~mihai@86.126.1.251> has joined #yocto | 19:56 | |
*** ant_home <ant_home!~andrea@host39-62-dynamic.24-79-r.retail.telecomitalia.it> has quit IRC | 20:00 | |
*** ScriptRipper <ScriptRipper!~ScriptRip@opensuse/member/MartinMohring> has quit IRC | 20:03 | |
*** galak <galak!~galak@99-51-185-173.lightspeed.austtx.sbcglobal.net> has joined #yocto | 20:06 | |
*** ScriptRipper1 <ScriptRipper1!~ScriptRip@178-26-43-81-dynip.superkabel.de> has joined #yocto | 20:07 | |
*** ddalex <ddalex!~ddalex@84.93.174.71> has joined #yocto | 20:10 | |
*** lexszero <lexszero!~lexszero@jabber.spbu.ru> has left #yocto | 20:22 | |
*** jwhitmore <jwhitmore!~jwhitmore@79.97.161.188> has quit IRC | 20:26 | |
*** joeythesaint <joeythesaint!~jjm@128.224.252.2> has quit IRC | 20:28 | |
*** zenlinux <zenlinux!~sgarman@c-50-139-96-211.hsd1.or.comcast.net> has joined #yocto | 20:30 | |
*** n01 <n01!~n01@2-238-57-164.ip242.fastwebnet.it> has quit IRC | 20:33 | |
*** n01 <n01!~n01@2-238-57-164.ip242.fastwebnet.it> has joined #yocto | 20:33 | |
*** walters <walters!~walters@c-66-31-18-51.hsd1.ma.comcast.net> has joined #yocto | 20:53 | |
*** Crofton|work <Crofton|work!~balister@pool-108-44-82-190.ronkva.east.verizon.net> has quit IRC | 21:06 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has quit IRC | 21:09 | |
*** mihai <mihai!~mihai@86.126.1.251> has quit IRC | 21:09 | |
*** jkridner <jkridner!~jkridner@pdpc/supporter/active/jkridner> has joined #yocto | 21:10 | |
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has joined #yocto | 21:12 | |
*** Crofton|work <Crofton|work!~balister@pool-108-44-82-190.ronkva.east.verizon.net> has joined #yocto | 21:14 | |
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has quit IRC | 21:17 | |
*** ccube <ccube!ccube@nx.ccube.de> has joined #yocto | 21:32 | |
ccube | hi | 21:32 |
ccube | I 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 IRC | 21:47 | |
*** Circuitsoft <Circuitsoft!ccb603ee@gateway/web/freenode/ip.204.182.3.238> has joined #yocto | 21:53 | |
Circuitsoft | Hello. I'm trying to compile a utility library for my target which uses dlfcn.h, and gcc can't find it. | 21:53 |
Circuitsoft | Is it supported on eglibc? | 21:54 |
mr_science | should be | 21:55 |
mr_science | i 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 #yocto | 22:04 | |
*** flihp <flihp!~flihp@c-76-24-20-220.hsd1.ma.comcast.net> has quit IRC | 22:04 | |
*** galak <galak!~galak@99-51-185-173.lightspeed.austtx.sbcglobal.net> has quit IRC | 22:15 | |
*** darknighte_znc is now known as darknighte | 22:17 | |
*** mulhern <mulhern!~mulhern@c-67-186-188-203.hsd1.ma.comcast.net> has joined #yocto | 22:26 | |
*** mulhern <mulhern!~mulhern@c-67-186-188-203.hsd1.ma.comcast.net> has quit IRC | 22:27 | |
*** darknighte is now known as darknighte_znc | 22:41 | |
*** darknighte_znc is now known as darknighte | 22:47 | |
*** smartin_ <smartin_!~smartin@ivr94-4-82-229-165-48.fbx.proxad.net> has quit IRC | 22:49 | |
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has quit IRC | 22:52 | |
*** maharvey_ <maharvey_!~maharvey@134.134.137.71> has joined #yocto | 22:54 | |
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has joined #yocto | 22:58 | |
*** maharvey <maharvey!~maharvey@134.134.139.70> has quit IRC | 22:58 | |
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has quit IRC | 22:59 | |
*** jwhitmore <jwhitmore!~jwhitmore@79.97.161.188> has joined #yocto | 22:59 | |
*** jwhitmore <jwhitmore!~jwhitmore@79.97.161.188> has quit IRC | 23:04 | |
*** oneQubit <oneQubit!~oneQubit@li439-130.members.linode.com> has quit IRC | 23:09 | |
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has joined #yocto | 23:13 | |
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has quit IRC | 23:18 | |
*** darknighte <darknighte!~darknight@pdpc/supporter/professional/darknighte> has joined #yocto | 23:36 | |
*** GusBricker <GusBricker!~GusBricke@c220-237-20-42.eburwd9.vic.optusnet.com.au> has joined #yocto | 23:43 | |
*** seebs <seebs!~seebs@home.seebs.net> has quit IRC | 23:45 | |
*** seebs <seebs!~seebs@home.seebs.net> has joined #yocto | 23:48 | |
*** ScriptRipper1 <ScriptRipper1!~ScriptRip@178-26-43-81-dynip.superkabel.de> has quit IRC | 23:56 | |
*** ScriptRipper1 <ScriptRipper1!~ScriptRip@178-26-51-16-dynip.superkabel.de> has joined #yocto | 23:59 |
Generated by irclog2html.py 4.0.0 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!