Re: [PATCH] Unexport LANG env variable

2017-06-15 Thread Masahiro Yamada
Hi Alexey, 2017-06-14 22:11 GMT+09:00 Alexey Brodkin : > Hi Michal, > > On Wed, 2017-06-14 at 15:02 +0200, Michal Marek wrote: >> Dne 14.6.2017 v 14:40 Alexey Brodkin napsal(a): >> > >> > In those cases when we parse output of standard utilities like readelf >> > etc we rely on a particular sente

Re: [PATCH] Unexport LANG env variable

2017-06-14 Thread Alexey Brodkin
Hi Michal, On Wed, 2017-06-14 at 15:02 +0200, Michal Marek wrote: > Dne 14.6.2017 v 14:40 Alexey Brodkin napsal(a): > > > > In those cases when we parse output of standard utilities like readelf > > etc we rely on a particular sentences. For example for ARC we extract > > an entry-point from vmli

Re: [PATCH] Unexport LANG env variable

2017-06-14 Thread Michal Marek
Dne 14.6.2017 v 14:40 Alexey Brodkin napsal(a): > In those cases when we parse output of standard utilities like readelf > etc we rely on a particular sentences. For example for ARC we extract > an entry-point from vmlinux like that: > -->8 > readelf -h vmlin

[PATCH] Unexport LANG env variable

2017-06-14 Thread Alexey Brodkin
In those cases when we parse output of standard utilities like readelf etc we rely on a particular sentences. For example for ARC we extract an entry-point from vmlinux like that: -->8 readelf -h vmlinux | grep "Entry point address" | grep -o 0x.* ---