SCons: Fix Python 3.12 SyntaxError with regex escape sequences

(cherry picked from commit b362976504)
This commit is contained in:
Rémi Verschelde 2023-09-25 10:39:30 +02:00
parent b0329fe8cb
commit 304f453b01
No known key found for this signature in database
GPG key ID: C3336907360768E1
2 changed files with 2 additions and 2 deletions

View file

@ -1076,7 +1076,7 @@ def get_compiler_version(env):
return None return None
else: # TODO: Implement for MSVC else: # TODO: Implement for MSVC
return None return None
match = re.search("[0-9]+\.[0-9.]+", version) match = re.search(r"[0-9]+\.[0-9.]+", version)
if match is not None: if match is not None:
return list(map(int, match.group().split("."))) return list(map(int, match.group().split(".")))
else: else:

View file

@ -429,7 +429,7 @@ def configure(env):
linker_version_str = subprocess.check_output( linker_version_str = subprocess.check_output(
[env.subst(env["LINK"]), "-Wl,--version"] + env.subst(env["LINKFLAGS"]) [env.subst(env["LINK"]), "-Wl,--version"] + env.subst(env["LINKFLAGS"])
).decode("utf-8") ).decode("utf-8")
gnu_ld_version = re.search("^GNU ld [^$]*(\d+\.\d+)$", linker_version_str, re.MULTILINE) gnu_ld_version = re.search(r"^GNU ld [^$]*(\d+\.\d+)$", linker_version_str, re.MULTILINE)
if not gnu_ld_version: if not gnu_ld_version:
print( print(
"Warning: Creating export template binaries enabled for PCK embedding is currently only supported with GNU ld, not gold, LLD or mold." "Warning: Creating export template binaries enabled for PCK embedding is currently only supported with GNU ld, not gold, LLD or mold."