Skip to content

Commit

Permalink
Merge pull request godotengine#100577 from bruvzg/win_llvm_fix
Browse files Browse the repository at this point in the history
[Windows, LLVM] Fix `colorize` flag.
  • Loading branch information
akien-mga authored Dec 18, 2024
2 parents 024efda + a030053 commit fafc073
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/windows/detect.py
Original file line number Diff line number Diff line change
Expand Up @@ -807,7 +807,7 @@ def configure_mingw(env: "SConsEnvironment"):
env.Append(CCFLAGS=san_flags)
env.Append(LINKFLAGS=san_flags)

if env["use_llvm"] and os.name == "nt" and methods._colorize:
if env["use_llvm"] and os.name == "nt" and methods._can_color:
env.Append(CCFLAGS=["$(-fansi-escape-codes$)", "$(-fcolor-diagnostics$)"])

if get_is_ar_thin_supported(env):
Expand Down

0 comments on commit fafc073

Please sign in to comment.