From ab28148fdc49413c15d7d6cfad67a7fe0fa9f86b Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Mon, 13 Feb 2023 10:55:23 +0100 Subject: [PATCH] Update PCK embedding SCons warning message to mention mold linker mold is now part of the SCons `linker` option. (cherry picked from commit 074d87d7188da6400028c719ea7571bff6265c36) --- platform/x11/detect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/x11/detect.py b/platform/x11/detect.py index 6a37e2662..98f741111 100644 --- a/platform/x11/detect.py +++ b/platform/x11/detect.py @@ -389,7 +389,7 @@ def configure(env): gnu_ld_version = re.search("^GNU ld [^$]*(\d+\.\d+)$", linker_version_str, re.MULTILINE) if not gnu_ld_version: print( - "Warning: Creating template binaries enabled for PCK embedding is currently only supported with GNU ld, not gold or LLD." + "Warning: Creating export template binaries enabled for PCK embedding is currently only supported with GNU ld, not gold, LLD or mold." ) else: if float(gnu_ld_version.group(1)) >= 2.30: