Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

kbuild: LLVMLinux: Fix LINUX_COMPILER definition script for compilation with clang

When building the LINUX_COMPILER definition, instead of merely taking the last
line from "$(CC) -v", grep for ' version ' in the output. This supports both
gcc and clang.

Signed-off-by: Jan-Simon Möller <dl9pf@gmx.de>
Signed-off-by: Behan Webster <behanw@converseincode.com>
Signed-off-by: Mark Charlebois <charlebm@gmail.com>
Cc: PaX Team <pageexec@freemail.hu>

authored by

Jan-Simon Möller and committed by
Behan Webster
db46293b 8a260796

+1 -1
+1 -1
scripts/mkcompile_h
··· 76 76 echo \#define LINUX_COMPILE_BY \"`echo $LINUX_COMPILE_BY | $UTS_TRUNCATE`\" 77 77 echo \#define LINUX_COMPILE_HOST \"`echo $LINUX_COMPILE_HOST | $UTS_TRUNCATE`\" 78 78 79 - echo \#define LINUX_COMPILER \"`$CC -v 2>&1 | tail -n 1`\" 79 + echo \#define LINUX_COMPILER \"`$CC -v 2>&1 | grep ' version '`\" 80 80 ) > .tmpcompile 81 81 82 82 # Only replace the real compile.h if the new one is different,