kernel/tools/include/linux/compiler-gcc.h
.. .. @@ -6,9 +6,11 @@ 6 6 /* 7 7 * Common definitions for all gcc versions go here. 8 8 */ 9 +#ifndef GCC_VERSION9 10 #define GCC_VERSION (__GNUC__ * 10000 \ 10 11 + __GNUC_MINOR__ * 100 \ 11 12 + __GNUC_PATCHLEVEL__) 13 +#endif12 14 13 15 #if GCC_VERSION >= 70000 && !defined(__CHECKER__) 14 16 # define __fallthrough __attribute__ ((fallthrough))