]> granicus.if.org Git - python/commitdiff
Define the 'executables' class attribute so the CCompiler constructor
authorGreg Ward <gward@python.net>
Sun, 25 Jun 2000 02:31:16 +0000 (02:31 +0000)
committerGreg Ward <gward@python.net>
Sun, 25 Jun 2000 02:31:16 +0000 (02:31 +0000)
doesn't blow up.  We don't currently use the 'set_executables()' bureaucracy,
although it would be nice to do so for consistency with UnixCCompiler.

Lib/distutils/msvccompiler.py

index 06d8501afa2131c2b053e9a21f32b4c8c7e25bfc..2e80ed5fd726fe416e30ff292ab85a09f8f1abba 100644 (file)
@@ -167,6 +167,13 @@ class MSVCCompiler (CCompiler) :
 
     compiler_type = 'msvc'
 
+    # Just set this so CCompiler's constructor doesn't barf.  We currently
+    # don't use the 'set_executables()' bureaucracy provided by CCompiler,
+    # as it really isn't necessary for this sort of single-compiler class.
+    # Would be nice to have a consistent interface with UnixCCompiler,
+    # though, so it's worth thinking about.
+    executables = {}
+
     # Private class data (need to distinguish C from C++ source for compiler)
     _c_extensions = ['.c']
     _cpp_extensions = ['.cc','.cpp']
@@ -295,7 +302,7 @@ class MSVCCompiler (CCompiler) :
             if extra_postargs:
                 lib_args.extend (extra_postargs)
             try:
-                self.spawn ([self.link] + ld_args)
+                self.spawn ([self.lib] + lib_args)
             except DistutilsExecError, msg:
                 raise LibError, msg