aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2018-05-28 05:22:02 -0400
committerMasahiro Yamada <yamada.masahiro@socionext.com>2018-06-08 05:56:01 -0400
commit469cb7376c067bc6203de4ceed253c10fe712542 (patch)
tree947d8e29568376f46db9065d044f4ef90f553cf7
parenta4353898980cc46b28c03fc401d4d916d82c6f4f (diff)
kconfig: add CC_IS_CLANG and CLANG_VERSION
This will be useful to describe the clang version dependency. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Reviewed-by: Kees Cook <keescook@chromium.org>
-rw-r--r--init/Kconfig7
-rwxr-xr-xscripts/clang-version.sh18
2 files changed, 11 insertions, 14 deletions
diff --git a/init/Kconfig b/init/Kconfig
index 66c8fd1f1d8e..efc43c60de45 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -16,6 +16,13 @@ config GCC_VERSION
16 default $(shell,$(srctree)/scripts/gcc-version.sh -p $(CC) | sed 's/^0*//') if CC_IS_GCC 16 default $(shell,$(srctree)/scripts/gcc-version.sh -p $(CC) | sed 's/^0*//') if CC_IS_GCC
17 default 0 17 default 0
18 18
19config CC_IS_CLANG
20 def_bool $(success,$(CC) --version | head -n 1 | grep -q clang)
21
22config CLANG_VERSION
23 int
24 default $(shell,$(srctree)/scripts/clang-version.sh $(CC))
25
19config CONSTRUCTORS 26config CONSTRUCTORS
20 bool 27 bool
21 depends on !UML 28 depends on !UML
diff --git a/scripts/clang-version.sh b/scripts/clang-version.sh
index 9780efa56980..dbf0a31eb111 100755
--- a/scripts/clang-version.sh
+++ b/scripts/clang-version.sh
@@ -10,24 +10,14 @@
10# clang-5.0.1 etc. 10# clang-5.0.1 etc.
11# 11#
12 12
13if [ "$1" = "-p" ] ; then
14 with_patchlevel=1;
15 shift;
16fi
17
18compiler="$*" 13compiler="$*"
19 14
20if [ ${#compiler} -eq 0 ]; then 15if !( $compiler --version | grep -q clang) ; then
21 echo "Error: No compiler specified." 16 echo 0
22 printf "Usage:\n\t$0 <clang-command>\n"
23 exit 1 17 exit 1
24fi 18fi
25 19
26MAJOR=$(echo __clang_major__ | $compiler -E -x c - | tail -n 1) 20MAJOR=$(echo __clang_major__ | $compiler -E -x c - | tail -n 1)
27MINOR=$(echo __clang_minor__ | $compiler -E -x c - | tail -n 1) 21MINOR=$(echo __clang_minor__ | $compiler -E -x c - | tail -n 1)
28if [ "x$with_patchlevel" != "x" ] ; then 22PATCHLEVEL=$(echo __clang_patchlevel__ | $compiler -E -x c - | tail -n 1)
29 PATCHLEVEL=$(echo __clang_patchlevel__ | $compiler -E -x c - | tail -n 1) 23printf "%d%02d%02d\\n" $MAJOR $MINOR $PATCHLEVEL
30 printf "%02d%02d%02d\\n" $MAJOR $MINOR $PATCHLEVEL
31else
32 printf "%02d%02d\\n" $MAJOR $MINOR
33fi