diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2024-09-25 17:38:34 +0200 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2024-09-26 12:06:16 +0200 |
commit | 395a4fc5f27b5cc8b9ebce3d66fd95be2eea9b3b (patch) | |
tree | dc4329836d93fa4a201eb24a669de42072a5f086 /platform | |
parent | c3e16cda00a9fbec4515142f4c59bc5134f1bfb0 (diff) | |
download | redot-engine-395a4fc5f27b5cc8b9ebce3d66fd95be2eea9b3b.tar.gz |
[SCons] Remove MAXLINELENGTH override for MSVC
It's not clear what is the actual max value that windows support, but
despite their claim of it being 8191 we have been seeing failure with
just 8150.
Diffstat (limited to 'platform')
-rw-r--r-- | platform/windows/detect.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/platform/windows/detect.py b/platform/windows/detect.py index 9adab7284c..4043f3a8c2 100644 --- a/platform/windows/detect.py +++ b/platform/windows/detect.py @@ -390,8 +390,6 @@ def configure_msvc(env: "SConsEnvironment", vcvars_msvc_config): env.AppendUnique(CPPDEFINES=["R128_STDC_ONLY"]) env.extra_suffix = ".llvm" + env.extra_suffix - env["MAXLINELENGTH"] = 8192 # Windows Vista and beyond, so always applicable. - if env["silence_msvc"] and not env.GetOption("clean"): from tempfile import mkstemp |