Re: [yocto] [meta-ivi][PATCH] weston: Add weston.ini config file

2014-04-24 Thread Billie Alsup
I know nothing about yocto recipes, but why would you invoke sed 4 times, rather than once with 4 different -e arguments? this kind of approach really adds up in large build systems. From: sujith h mailto:sujit...@gmail.com>> Date: Thursday, April 24, 2014 2:18 PM To: "Behrens, Holger" mailto:h

Re: [yocto] [PATCH] perf: mips64: Convert __u64 to unsigned long long

2013-10-25 Thread Billie Alsup
I guess for that example, you have to add % yourself "%s/event-%d-%" PRIu64 "-%d" but for all the WRITE_ASS examples, simply replace "llu" with PRIu64 On 10/25/13 1:11 PM, "Billie Alsup" wrote: >Wouldn't it be better to change "%llu

Re: [yocto] [PATCH] perf: mips64: Convert __u64 to unsigned long long

2013-10-25 Thread Billie Alsup
Wouldn't it be better to change "%llu" to PRIu64 (from inttypes.h)? Notice that PRIu32 is already used in places. You can use string catenation where necessary, e.g. "%s/event-%d-" PRIu64 "-%d" On 10/25/13 12:17 PM, "Yang Shi" wrote: >On MIPS64, "__u64" is "unsigned long" type, so the "%llu" s