public inbox for linux-kbuild@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kbuild: Update ld-version.sh for change in LLD version output
@ 2024-07-04 16:18 Nathan Chancellor
  2024-07-04 21:23 ` Fangrui Song
  0 siblings, 1 reply; 5+ messages in thread
From: Nathan Chancellor @ 2024-07-04 16:18 UTC (permalink / raw)
  To: Masahiro Yamada
  Cc: Nicolas Schier, Fangrui Song, Bill Wendling, Justin Stitt,
	linux-kbuild, llvm, patches, stable, Nathan Chancellor

After [1] in upstream LLVM, ld.lld's version output is slightly
different when the cmake configuration option LLVM_APPEND_VC_REV is
disabled.

Before:

  Debian LLD 19.0.0 (compatible with GNU linkers)

After:

  Debian LLD 19.0.0, compatible with GNU linkers

This results in ld-version.sh failing with

  scripts/ld-version.sh: 19: arithmetic expression: expecting EOF: "10000 * 19 + 100 * 0 + 0,"

because the trailing comma is included in the patch level part of the
expression. Remove the trailing comma when assigning the version
variable in the LLD block to resolve the error, resulting in the proper
output:

  LLD 190000

With LLVM_APPEND_VC_REV enabled, there is no issue with the new output
because it is treated the same as the prior LLVM_APPEND_VC_REV=OFF
version string was.

  ClangBuiltLinux LLD 19.0.0 (https://github.com/llvm/llvm-project a3c5c83273358a85a4e02f5f76379b1a276e7714), compatible with GNU linkers

Cc: stable@vger.kernel.org
Fixes: 02aff8592204 ("kbuild: check the minimum linker version in Kconfig")
Link: https://github.com/llvm/llvm-project/commit/0f9fbbb63cfcd2069441aa2ebef622c9716f8dbb [1]
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
---
 scripts/ld-version.sh | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/scripts/ld-version.sh b/scripts/ld-version.sh
index a78b804b680c..f2f425322524 100755
--- a/scripts/ld-version.sh
+++ b/scripts/ld-version.sh
@@ -47,7 +47,9 @@ else
 	done
 
 	if [ "$1" = LLD ]; then
-		version=$2
+		# LLD after https://github.com/llvm/llvm-project/commit/0f9fbbb63cfcd2069441aa2ebef622c9716f8dbb
+		# may have a trailing comma on the patch version with LLVM_APPEND_VC_REV=off.
+		version=${2%,}
 		min_version=$($min_tool_version llvm)
 		name=LLD
 		disp_name=LLD

---
base-commit: 22a40d14b572deb80c0648557f4bd502d7e83826
change-id: 20240704-update-ld-version-for-new-lld-ver-str-b7a4afbbd5f1

Best regards,
-- 
Nathan Chancellor <nathan@kernel.org>


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-07-06  5:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-04 16:18 [PATCH] kbuild: Update ld-version.sh for change in LLD version output Nathan Chancellor
2024-07-04 21:23 ` Fangrui Song
2024-07-05 16:00   ` Nathan Chancellor
2024-07-06  3:23     ` Fangrui Song
2024-07-06  5:08     ` Masahiro Yamada

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox