Linux: Fix GNU ld detection for pck_embed linker script
(cherry picked from commit fce3602a1e
)
This commit is contained in:
parent
5d30d77fd7
commit
b5e368c92b
@ -405,7 +405,9 @@ def configure(env):
|
|||||||
import subprocess
|
import subprocess
|
||||||
import re
|
import re
|
||||||
|
|
||||||
linker_version_str = subprocess.check_output([env.subst(env["LINK"]), "-Wl,--version"]).decode("utf-8")
|
linker_version_str = subprocess.check_output(
|
||||||
|
[env.subst(env["LINK"]), "-Wl,--version"] + env.subst(env["LINKFLAGS"])
|
||||||
|
).decode("utf-8")
|
||||||
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(
|
||||||
|
Loading…
Reference in New Issue
Block a user