diff options
author | Masahiro Yamada | 2014-02-04 17:24:45 +0900 |
---|---|---|
committer | Tom Rini | 2014-02-19 11:10:04 -0500 |
commit | 79fc0c5f498c3982aa4740c273ab1a9255063d9c (patch) | |
tree | 63ae9ab410770442f296586ae4207fdae51cfa35 /tools/.gitignore | |
parent | 9a368d0f5818bb671c4567ca0e2dbabbf9c6724d (diff) |
tools/env: cross-compile fw_printenv without setting HOSTCC
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=<your CC cross-compiler> env
Going forward we can cross compile it by specifying CROSS_COMPILE:
make CROSS_COMPILE=<your cross-compiler prefix> env
This looks more natural.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Tested-by: Gerhard Sittig <gsi@denx.de>
Diffstat (limited to 'tools/.gitignore')
-rw-r--r-- | tools/.gitignore | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/.gitignore b/tools/.gitignore index 13283b7d8cd..6e4a28716bd 100644 --- a/tools/.gitignore +++ b/tools/.gitignore @@ -16,7 +16,6 @@ /xway-swap-bytes /*.exe /easylogo/easylogo -/env/fw_printenv /gdb/gdbcont /gdb/gdbsend /kernel-doc/docproc |