toolchain: fix gcc depends on kernel headers
authorHauke Mehrtens <hauke.mehrtens@intel.com>
Tue, 23 Jul 2019 14:53:51 +0000 (16:53 +0200)
committerRISCi_ATOM <bob@bobcall.me>
Fri, 13 Sep 2019 20:03:27 +0000 (16:03 -0400)
commitfcb589e2e9fd48ae6f06bc793fdf312af879d622
treeb24a84bb562559309f191efc1fbf3a0e6eded2d5
parent8922ba9b48e948232c8ecb1c2eabd77d7edafc6f
toolchain: fix gcc depends on kernel headers

GCC needs the kernel headers to compile.
Some GCC file includes asm/unistd.h which is provided by the kernel headers.
Normally the kernel headers build is very fast and ready before the gcc uses
it, but if it clones the kernel from a slow git repository it takes longer
and then it could be that the gcc already wants to use the kernel headers
before they are available. This patch fixes this problem by adding the
missing dependency.

Signed-off-by: Hauke Mehrtens <hauke.mehrtens@intel.com>
(cherry picked from commit b20156ba704ed8e03d030b2f294d8d19bebd2f71)
toolchain/Makefile