toolchain: fix gcc depends on kernel headers
authorHauke Mehrtens <hauke.mehrtens@intel.com>
Tue, 23 Jul 2019 14:53:51 +0000 (16:53 +0200)
committerJo-Philipp Wich <jo@mein.io>
Wed, 4 Sep 2019 11:35:53 +0000 (13:35 +0200)
commit930c141b69c7dd19e474586290573a19f69aa5a2
treec9e1ce993aaea829347e16251a20d47a7a7ea964
parentcc7560eb22d2c491a0a995135780f3e8aa3cfa6f
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