diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-02-08 15:43:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-08 15:43:10 +0100 |
commit | 42f04cbc1a59772a5f7eca9c6847fa349b23a70e (patch) | |
tree | 8c11dccd0ab5aa2cf762c32ff7c4a1a7121b8e62 /platform | |
parent | a27715d0dac2046c7012a93d41cb5aece966cc19 (diff) | |
parent | 4e2dbb1bc0845c9458a47f3ba86b184996fb7444 (diff) |
Merge pull request #35982 from akien-mga/scons-modules-enabled-header-and-split
SCons: Split libmodules.a in folder-based libs
Diffstat (limited to 'platform')
-rw-r--r-- | platform/windows/detect.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/platform/windows/detect.py b/platform/windows/detect.py index 500736bd3f..72c3f60d99 100644 --- a/platform/windows/detect.py +++ b/platform/windows/detect.py @@ -293,12 +293,7 @@ def configure_mingw(env): ## Compiler configuration - if (os.name == "nt"): - # Force splitting libmodules.a in multiple chunks to work around - # issues reaching the linker command line size limit, which also - # seem to induce huge slowdown for 'ar' (GH-30892). - env['split_libmodules'] = True - else: + if os.name != "nt": env["PROGSUFFIX"] = env["PROGSUFFIX"] + ".exe" # for linux cross-compilation if (env["bits"] == "default"): |