toolchain: fix gcc depends on kernel headers
authorHauke Mehrtens <hauke.mehrtens@intel.com>
Tue, 23 Jul 2019 14:53:51 +0000 (16:53 +0200)
committerHauke Mehrtens <hauke@hauke-m.de>
Mon, 5 Aug 2019 21:22:26 +0000 (23:22 +0200)
commitb20156ba704ed8e03d030b2f294d8d19bebd2f71
treec01496d821eac92b9a676c134012d22b784734d2
parent2dca43b871629e418ba2116bcdb95c615fdf1626
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>
toolchain/Makefile