diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-02-13 12:57:46 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-02-13 12:57:46 +0100 |
commit | 927d7dc2c8ea010bcf1d2e843e4d8863c922be9d (patch) | |
tree | 532c3aa40e9747b28af5c92865cf76327a138fad /platform/linuxbsd/detect.py | |
parent | edc2686687f352a065425319d535dd37e85f8122 (diff) | |
parent | 074d87d7188da6400028c719ea7571bff6265c36 (diff) |
Merge pull request #73211 from Calinou/scons-update-pck-embed-warning
Update PCK embedding SCons warning message to mention mold linker
Diffstat (limited to 'platform/linuxbsd/detect.py')
-rw-r--r-- | platform/linuxbsd/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/linuxbsd/detect.py b/platform/linuxbsd/detect.py index 36e149f2b4..bae5a98aee 100644 --- a/platform/linuxbsd/detect.py +++ b/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: |