]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
fdt: Ensure that libfdt_env.h comes from U-Boot
authorSimon Glass <sjg@chromium.org>
Mon, 11 Mar 2013 06:30:27 +0000 (06:30 +0000)
committerTom Rini <trini@ti.com>
Wed, 17 Apr 2013 14:58:51 +0000 (10:58 -0400)
commit669dfc2ed8d853d6bcdcafa1de6aca22929465e5
tree4b50a0bde4b25038c5660d8ceb3a73cb3b6990d2
parent1741c64d642a95c4bb88a2b03e96c6dc7ed5fe62
fdt: Ensure that libfdt_env.h comes from U-Boot

When building host utilities, we include libfdt.h from the host, not from
U-Boot. This in turn brings in libfdt_env.h from the host, which can mess
up the types and cause a build failure, depending on the host environment.
To fix this, force inclusion of U-Boot's libfdt_env.h so that the types
are correct.

Another way to fix this is to use -nostdinc and -idirafter to ensure that
system includes are included after U-Boot ones. Unfortunately this means
that U-Boot's errno.h gets included instead of the system one. This in
turn requires a hack to errno.h to redirect things, so all in all the
solution in this patch is probably cleaner.

Signed-off-by: Simon Glass <sjg@chromium.org>
tools/Makefile