From 4e2dbb1bc0845c9458a47f3ba86b184996fb7444 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Fri, 7 Feb 2020 10:41:45 +0100 Subject: SCons: Split libmodules.a in folder-based libs This removes the need for the hacky split_libmodules logic on Windows, since all libs are now of manageable size. --- platform/windows/detect.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'platform') 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"): -- cgit v1.2.3