]> git.baikalelectronics.ru Git - kernel.git/commit
perf build: Fix ccache usage in $(CC) when generating arch errno table
authorAntonio Terceiro <antonio.terceiro@linaro.org>
Wed, 24 Feb 2021 13:00:46 +0000 (10:00 -0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Sat, 6 Mar 2021 19:54:26 +0000 (16:54 -0300)
commit58f0f1a1372176279d2efdd07bc69b723c2b5437
tree0d11240f5e8f8b5b615b3e5056358125d5f79322
parent96382895c15015312e37d85f3637063923897b4e
perf build: Fix ccache usage in $(CC) when generating arch errno table

This was introduced by commit 67b5b2d011fd57ad ("perf: Normalize gcc
parameter when generating arch errno table").

Assuming the first word of $(CC) is the actual compiler breaks usage
like CC="ccache gcc": the script ends up calling ccache directly with
gcc arguments, what fails. Instead of getting the first word, just
remove from $(CC) any word that starts with a "-". This maintains the
spirit of the original patch, while not breaking ccache users.

Fixes: 67b5b2d011fd57ad ("perf: Normalize gcc parameter when generating arch errno table")
Signed-off-by: Antonio Terceiro <antonio.terceiro@linaro.org>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: He Zhe <zhe.he@windriver.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: stable@vger.kernel.org
Link: http://lore.kernel.org/lkml/20210224130046.346977-1-antonio.terceiro@linaro.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/Makefile.perf