diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2024-09-26 12:50:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-26 12:50:14 +0200 |
commit | a0d1ba4a3d1760f48ef3297a6299ee3dbc1260e1 (patch) | |
tree | 346ebf6a47240542c2c215c8a5fc0b46d96c4a54 /platform/windows/detect.py | |
parent | a4c1804cab2ace8c7496390132c8cdc019b55078 (diff) | |
parent | 395a4fc5f27b5cc8b9ebce3d66fd95be2eea9b3b (diff) | |
download | redot-engine-a0d1ba4a3d1760f48ef3297a6299ee3dbc1260e1.tar.gz |
Merge pull request #97458 from Faless/fix/imagine_its_2024_and_your_os_cant_handle_few_kbs_of_text
[SCons] Remove MAXLINELENGTH override for MSVC
Diffstat (limited to 'platform/windows/detect.py')
-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 |