msvccompiler.py 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. # -*- Mode: Python -*-
  2. # GObject-Introspection - a framework for introspecting GObject libraries
  3. # Copyright (C) 2014 Chun-wei Fan
  4. #
  5. # This library is free software; you can redistribute it and/or
  6. # modify it under the terms of the GNU Lesser General Public
  7. # License as published by the Free Software Foundation; either
  8. # version 2 of the License, or (at your option) any later version.
  9. #
  10. # This library is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. # Lesser General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU Lesser General Public
  16. # License along with this library; if not, write to the
  17. # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  18. # Boston, MA 02111-1307, USA.
  19. #
  20. import os
  21. import distutils
  22. from distutils.errors import (DistutilsExecError, CompileError, LibError,
  23. LinkError, UnknownFileError)
  24. from distutils.ccompiler import CCompiler, gen_preprocess_options
  25. from distutils.dep_util import newer
  26. # Distutil's MSVCCompiler does not provide a preprocess()
  27. # Implementation, so do our own here.
  28. def get_msvc_compiler():
  29. return MSVCCompiler()
  30. class MSVCCompiler(distutils.msvccompiler.MSVCCompiler):
  31. def __init__(self, verbose=0, dry_run=0, force=0):
  32. CCompiler.__init__(self, verbose, dry_run, force)
  33. self.__paths = []
  34. self.__arch = None # deprecated name
  35. if os.name == 'nt':
  36. if isinstance(self, distutils.msvc9compiler.MSVCCompiler):
  37. self.__version = distutils.msvc9compiler.VERSION
  38. self.initialized = False
  39. self.preprocess_options = None
  40. def preprocess(self,
  41. source,
  42. output_file=None,
  43. macros=None,
  44. include_dirs=None,
  45. extra_preargs=None,
  46. extra_postargs=None):
  47. if self.initialized is False:
  48. self.initialize()
  49. (_, macros, include_dirs) = \
  50. self._fix_compile_args(None, macros, include_dirs)
  51. pp_opts = gen_preprocess_options(macros, include_dirs)
  52. preprocess_options = ['-E']
  53. source_basename = None
  54. if output_file is not None:
  55. preprocess_options.append('-P')
  56. source_basename = self._get_file_basename(source)
  57. cpp_args = self.cc.split()
  58. if extra_preargs is not None:
  59. cpp_args[:0] = extra_preargs
  60. if extra_postargs is not None:
  61. preprocess_options.extend(extra_postargs)
  62. cpp_args.extend(preprocess_options)
  63. cpp_args.extend(pp_opts)
  64. cpp_args.append(source)
  65. # We need to preprocess: either we're being forced to, or the
  66. # source file is newer than the target (or the target doesn't
  67. # exist).
  68. if self.force or output_file is None or newer(source, output_file):
  69. try:
  70. self.spawn(cpp_args)
  71. except DistutilsExecError as msg:
  72. print(msg)
  73. raise CompileError
  74. # The /P option for the MSVC preprocessor will output the results
  75. # of the preprocessor to a file, as <source_without_extension>.i,
  76. # so in order to output the specified filename, we need to rename
  77. # that file
  78. if output_file is not None:
  79. if output_file != source_basename + '.i':
  80. os.rename(source_basename + '.i', output_file)
  81. def _get_file_basename(self, filename):
  82. if filename is None:
  83. return None
  84. if filename.rfind('.') == -1:
  85. return filename[filename.rfind('\\') + 1:]
  86. else:
  87. return filename[filename.rfind('\\') + 1:filename.rfind('.')]