Re: [U-Boot] [PATCH v7 38/38] tools/env: cross-compile fw_printenv without setting HOSTCC

2014-01-28 Thread Masahiro Yamada
Hello Gerhard. > It's a little funny that the build progress says "HOSTCC" while > it does a cross build, but agree that this is mere cosmetics and > results from the development history of the tool's use scenario. I have to admit I compromised on this matter. I did not want to add many build ru

Re: [U-Boot] [PATCH v7 38/38] tools/env: cross-compile fw_printenv without setting HOSTCC

2014-01-28 Thread Gerhard Sittig
On Fri, Jan 24, 2014 at 19:38 +0900, Masahiro Yamada wrote: > > fw_printenv is a program which mostly runs on the target Linux. > > Before switching to Kbuild, we needed to set HOSTCC at the > command line like this: > make HOSTCC= env > > Going forward we can cross compile it by specifying

[U-Boot] [PATCH v7 38/38] tools/env: cross-compile fw_printenv without setting HOSTCC

2014-01-24 Thread Masahiro Yamada
fw_printenv is a program which mostly runs on the target Linux. Before switching to Kbuild, we needed to set HOSTCC at the command line like this: make HOSTCC= env Going forward we can cross compile it by specifying CROSS_COMPILE: make CROSS_COMPILE= env This looks more natural. Signed-o