diff options
author | Bertrand Jacquin <bertrand@jacquin.bzh> | 2021-11-07 17:48:45 +0000 |
---|---|---|
committer | Bertrand Jacquin <bertrand@jacquin.bzh> | 2021-11-07 17:50:56 +0000 |
commit | 91601d98ab0515d123917dd7f6b7af8d6249c54f (patch) | |
tree | 012d8010bdc8264704609d16071bb5ea5adb68f5 /eclass/linux-build.eclass | |
parent | eclass/linux-build: support llvm 13 (diff) | |
download | portage-91601d98ab0515d123917dd7f6b7af8d6249c54f.tar.xz |
eclass/linux-build: remove version restriction
all version of llvm and clang present in portage are supported by kernel
build.
Diffstat (limited to 'eclass/linux-build.eclass')
-rw-r--r-- | eclass/linux-build.eclass | 25 |
1 files changed, 3 insertions, 22 deletions
diff --git a/eclass/linux-build.eclass b/eclass/linux-build.eclass index 7ad8d018..e5b468bf 100644 --- a/eclass/linux-build.eclass +++ b/eclass/linux-build.eclass @@ -49,28 +49,9 @@ DEPEND="${DEPEND} sys-apps/kmod virtual/libelf llvm? ( - || ( - ( - sys-devel/clang:10 - sys-devel/llvm:10 - =sys-devel/lld-10* - ) - ( - sys-devel/clang:11 - sys-devel/llvm:11 - =sys-devel/lld-11* - ) - ( - sys-devel/clang:12 - sys-devel/llvm:12 - =sys-devel/lld-12* - ) - ( - sys-devel/clang:13 - sys-devel/llvm:13 - =sys-devel/lld-13* - ) - ) + sys-devel/clang:= + sys-devel/llvm:= + sys-devel/lld:= )" # @FUNCTION: _linux-build_configval |