Thanks to visit codestin.com Credit goes to github.com
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 cfa01f6 commit e81458dCopy full SHA for e81458d
1 file changed
numpy/distutils/mingw32ccompiler.py
@@ -307,9 +307,12 @@ def check_embedded_msvcr_match_linked(msver):
307
"(%d) and the one about to be embedded " \
308
"(%d)" % (int(msver), maj)
309
310
+def configtest_name(config):
311
+ base = os.path.basename(config._gen_temp_sourcefile("yo", [], lang))
312
+ return os.path.splitext(base)[0]
313
+
314
def manifest_name(config):
315
# Get configest name (including suffix)
- base = os.path.basename(config._gen_temp_sourcefile("yo", [], lang))
- root, ext = os.path.splitext(base)
316
+ root = configtest_name(config)
317
exext = self.compiler.exe_extension
318
return root + exect + ".manifest"
0 commit comments