diff --git a/platform/x11/detect.py b/platform/x11/detect.py index 27c1a8cd0b2..592c8bbb5f4 100644 --- a/platform/x11/detect.py +++ b/platform/x11/detect.py @@ -416,7 +416,9 @@ def configure(env): import subprocess 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) if not gnu_ld_version: print(