We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82aef99 commit 2029f2cCopy full SHA for 2029f2c
setup.py
@@ -81,7 +81,8 @@ def build_extension(self, ext):
81
else:
82
if self.compiler.compiler_type == "msvc":
83
compiler = copy.deepcopy(self.compiler)
84
- compiler.initialize()
+ if not compiler.initialized:
85
+ compiler.initialize()
86
compiler_command = f'"{compiler.cc}"'
87
compiler_args = compiler.compile_options
88
elif self.compiler.compiler_type == "unix":
0 commit comments