diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2023-02-13 10:55:23 +0100 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2023-02-13 10:55:37 +0100 |
commit | 074d87d7188da6400028c719ea7571bff6265c36 (patch) | |
tree | 9a437587d584b155db21bcf9f013404013713d9a | |
parent | b7723a01d957e6492a3f20bce8a47d3559afe5c5 (diff) |
Update PCK embedding SCons warning message to mention mold linker
mold is now part of the SCons `linker` option.
-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: |