Merge pull request #7240 from michtesar/fix/ld-link-name

Fix default linker timing label on non-Windows platforms
This commit is contained in:
Jeroen van Rijn
2026-08-06 22:16:47 +02:00
committed by GitHub

View File

@@ -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