1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-08 12:40:44 +00:00

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 6b202812ff
commit b0dd91bec8
2 changed files with 2 additions and 2 deletions

View File

@@ -375,7 +375,7 @@ def configure(env):
import re
linker_version_str = subprocess.check_output([env.subst(env["LINK"]), "-Wl,--version"]).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:
print(
"Warning: Creating template binaries enabled for PCK embedding is currently only supported with GNU ld, not gold or LLD."