mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-26 05:37:13 +01:00
Update PCK embedding SCons warning message to mention mold linker
mold is now part of the SCons `linker` option. (cherry picked from commit 074d87d7188da6400028c719ea7571bff6265c36)
This commit is contained in:
parent
63f21ecadb
commit
ab28148fdc
@ -389,7 +389,7 @@ def configure(env):
|
|||||||
gnu_ld_version = re.search("^GNU ld [^$]*(\d+\.\d+)$", linker_version_str, re.MULTILINE)
|
gnu_ld_version = re.search("^GNU ld [^$]*(\d+\.\d+)$", linker_version_str, re.MULTILINE)
|
||||||
if not gnu_ld_version:
|
if not gnu_ld_version:
|
||||||
print(
|
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:
|
else:
|
||||||
if float(gnu_ld_version.group(1)) >= 2.30:
|
if float(gnu_ld_version.group(1)) >= 2.30:
|
||||||
|
Loading…
Reference in New Issue
Block a user