2016-05-26 00:25, Hiroyuki Mikita: > GCC_VERSION is empty in case of clang: > /bin/sh: line 0: test: -ge: unary operator expected > > It is the same issue as http://dpdk.org/dev/patchwork/patch/5994/ > > Fixes: 366113dbfb69 ("e1000: suppress misleading indentation warning") > > Signed-off-by: Hiroyuki Mikita <h.mikita89 at gmail.com> > --- > v2: > * fix for cross compier
The output of git grep '(CC)' shows that there is some room for cross-compilation fixes. Any volunteer? > +ifeq ($(findstring gcc, $(CC)), gcc) > ifeq ($(shell test $(GCC_VERSION) -ge 60 && echo 1), 1) Looks good, thanks