From 7c44558f4711b5da3adcfc2f239f18b51a1f82bf Mon Sep 17 00:00:00 2001 From: Johnny Willemsen Date: Mon, 10 Mar 2025 16:46:50 +0100 Subject: [PATCH] Add ld.lld as linker * command/check_linker.pm: --- command/check_linker.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/command/check_linker.pm b/command/check_linker.pm index 4d5e9a6bf..feb702418 100644 --- a/command/check_linker.pm +++ b/command/check_linker.pm @@ -42,6 +42,9 @@ sub Run ($) if(lc $linker eq "ld"){ system("ld -v"); } + elsif(lc $linker eq "ld.lld"){ + system("ld.lld -v"); + } elsif(lc $linker eq "ilink32"){ system("ilink32 -v"); }