Message ID | 20200419202128.20571-1-natechancellor@gmail.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | [v2,1/3] kbuild: add CONFIG_LD_IS_LLD | expand |
On Mon, Apr 20, 2020 at 5:21 AM Nathan Chancellor <natechancellor@gmail.com> wrote: > > From: Sami Tolvanen <samitolvanen@google.com> > > Similarly to the CC_IS_CLANG config, add LD_IS_LLD to avoid GNU ld > specific logic such as ld-version or ld-ifversion and gain the > ability to select potential features that depend on the linker at > configuration time such as LTO. > > Signed-off-by: Sami Tolvanen <samitolvanen@google.com> > [nc: Reword commit message] > Signed-off-by: Nathan Chancellor <natechancellor@gmail.com> > --- Acked-by: Masahiro Yamada <masahiroy@kernel.org>
diff --git a/init/Kconfig b/init/Kconfig index 9e22ee8fbd75..c15ee42b8272 100644 --- a/init/Kconfig +++ b/init/Kconfig @@ -23,6 +23,9 @@ config LD_VERSION config CC_IS_CLANG def_bool $(success,$(CC) --version | head -n 1 | grep -q clang) +config LD_IS_LLD + def_bool $(success,$(LD) -v | head -n 1 | grep -q LLD) + config CLANG_VERSION int default $(shell,$(srctree)/scripts/clang-version.sh $(CC))