From be45d76938696a860ee81b06f357bdd4f92a0e7b Mon Sep 17 00:00:00 2001 From: Avasam Date: Tue, 11 Mar 2025 19:38:41 -0400 Subject: [PATCH] Bugfix: MSVC compiler no longer sets shared_lib_format --- distutils/compilers/C/msvc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distutils/compilers/C/msvc.py b/distutils/compilers/C/msvc.py index 795a47fd..6db062a9 100644 --- a/distutils/compilers/C/msvc.py +++ b/distutils/compilers/C/msvc.py @@ -257,7 +257,7 @@ class Compiler(base.Compiler): obj_extension = '.obj' static_lib_extension = '.lib' shared_lib_extension = '.dll' - static_lib_format = static_lib_format = '%s%s' + static_lib_format = shared_lib_format = '%s%s' exe_extension = '.exe' def __init__(self, verbose=False, dry_run=False, force=False) -> None: