diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2020-03-29 20:08:32 +0900 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-04-09 00:13:45 +0900 |
commit | 77342a02ff6e14645916d85c8550dd1011c4f7d7 (patch) | |
tree | 1acf2ba01d0a386cd71561c893e0825a567c4833 /scripts/Makefile.clean | |
parent | afe956c577b2d5a3d9834e4424587c1ebcf90c4c (diff) | |
download | linux-77342a02ff6e14645916d85c8550dd1011c4f7d7.tar.gz linux-77342a02ff6e14645916d85c8550dd1011c4f7d7.tar.bz2 linux-77342a02ff6e14645916d85c8550dd1011c4f7d7.zip |
gcc-plugins: drop support for GCC <= 4.7
Nobody was opposed to raising minimum GCC version to 4.8 [1]
So, we will drop GCC <= 4.7 support sooner or later.
We always use C++ compiler for building plugins for GCC >= 4.8.
This commit drops the plugin support for GCC <= 4.7 a bit earlier,
which allows us to dump lots of code.
[1] https://lkml.org/lkml/2020/1/23/545
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Acked-by: Kees Cook <keescook@chromium.org>
Diffstat (limited to 'scripts/Makefile.clean')
-rw-r--r-- | scripts/Makefile.clean | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/Makefile.clean b/scripts/Makefile.clean index 1e4206566a82..075f0cc2d8d7 100644 --- a/scripts/Makefile.clean +++ b/scripts/Makefile.clean @@ -30,7 +30,6 @@ subdir-ymn := $(addprefix $(obj)/,$(subdir-ymn)) __clean-files := $(extra-y) $(extra-m) $(extra-) \ $(always) $(always-y) $(always-m) $(always-) $(targets) $(clean-files) \ $(hostprogs) $(hostprogs-y) $(hostprogs-m) $(hostprogs-) \ - $(hostlibs-y) $(hostlibs-m) $(hostlibs-) \ $(hostcxxlibs-y) $(hostcxxlibs-m) __clean-files := $(filter-out $(no-clean-files), $(__clean-files)) |