Browse Source

Merge pull request #73211 from Calinou/scons-update-pck-embed-warning

Update PCK embedding SCons warning message to mention mold linker
Rémi Verschelde 2 years ago
parent
commit
927d7dc2c8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      platform/linuxbsd/detect.py

+ 1 - 1
platform/linuxbsd/detect.py

@@ -346,7 +346,7 @@ def configure(env: "Environment"):
         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: