Merge pull request #56965 from Calinou/scons-print-debug-notice-3.x

Print a notice when compiling with `target=debug`
This commit is contained in:
Rémi Verschelde 2022-01-23 01:27:08 +01:00 committed by GitHub
commit 30fe807fa9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -503,7 +503,6 @@ if selected_platform in platform_list:
Exit(255)
suffix += ".opt"
env.Append(CPPDEFINES=["NDEBUG"])
elif env["target"] == "release_debug":
if env["tools"]:
suffix += ".opt.tools"
@ -511,8 +510,14 @@ if selected_platform in platform_list:
suffix += ".opt.debug"
else:
if env["tools"]:
print(
"Note: Building a debug binary (which will run slowly). Use `target=release_debug` to build an optimized release binary."
)
suffix += ".tools"
else:
print(
"Note: Building a debug binary (which will run slowly). Use `target=release` to build an optimized release binary."
)
suffix += ".debug"
if env["arch"] != "":