From 56c49287a6c9455b574c7c151af868c1eb4cbdfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Tesa=C5=99?= Date: Thu, 6 Aug 2026 22:08:28 +0200 Subject: [PATCH] Fix default linker timing label on non-Windows platforms --- src/linker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/linker.cpp b/src/linker.cpp index cb3cbe023..98d299eb8 100644 --- a/src/linker.cpp +++ b/src/linker.cpp @@ -155,7 +155,7 @@ try_cross_linking:; String section_name = str_lit("msvc-link"); bool is_windows = build_context.metrics.os == TargetOs_windows; #else - String section_name = str_lit("lld-link"); + String section_name = str_lit("ld-link"); bool is_windows = false; #endif