msvc.py
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:31k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. """engine.SCons.Tool.msvc
  2. Tool-specific initialization for Microsoft Visual C/C++.
  3. There normally shouldn't be any need to import this module directly.
  4. It will usually be imported through the generic SCons.Tool.Tool()
  5. selection method.
  6. """
  7. #
  8. # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 The SCons Foundation
  9. #
  10. # Permission is hereby granted, free of charge, to any person obtaining
  11. # a copy of this software and associated documentation files (the
  12. # "Software"), to deal in the Software without restriction, including
  13. # without limitation the rights to use, copy, modify, merge, publish,
  14. # distribute, sublicense, and/or sell copies of the Software, and to
  15. # permit persons to whom the Software is furnished to do so, subject to
  16. # the following conditions:
  17. #
  18. # The above copyright notice and this permission notice shall be included
  19. # in all copies or substantial portions of the Software.
  20. #
  21. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  22. # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  23. # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  24. # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  25. # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  26. # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  27. # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  28. #
  29. __revision__ = "src/engine/SCons/Tool/msvc.py 3057 2008/06/09 22:21:00 knight"
  30. import os.path
  31. import re
  32. import string
  33. import SCons.Action
  34. import SCons.Builder
  35. import SCons.Errors
  36. import SCons.Platform.win32
  37. import SCons.Tool
  38. import SCons.Tool.msvs
  39. import SCons.Util
  40. import SCons.Warnings
  41. CSuffixes = ['.c', '.C']
  42. CXXSuffixes = ['.cc', '.cpp', '.cxx', '.c++', '.C++']
  43. def _parse_msvc7_overrides(version,platform):
  44.     """ Parse any overridden defaults for MSVS directory locations
  45.     in MSVS .NET. """
  46.     # First, we get the shell folder for this user:
  47.     if not SCons.Util.can_read_reg:
  48.         raise SCons.Errors.InternalError, "No Windows registry module was found"
  49.     comps = ""
  50.     try:
  51.         (comps, t) = SCons.Util.RegGetValue(SCons.Util.HKEY_CURRENT_USER,
  52.                                             r'SoftwareMicrosoftWindowsCurrentVersion' +
  53.                                             r'ExplorerShell FoldersLocal AppData')
  54.     except SCons.Util.RegError:
  55.         raise SCons.Errors.InternalError, 
  56.               "The Local AppData directory was not found in the registry."
  57.     comps = comps + '\Microsoft\VisualStudio\' + version + '\VCComponents.dat'
  58.     dirs = {}
  59.     if os.path.exists(comps):
  60.         # now we parse the directories from this file, if it exists.
  61.         # We only look for entries after:
  62.         # [VCVC_OBJECTS_PLATFORM_INFOWin32Directories],
  63.         # since this file could contain a number of things...
  64.         lines = None
  65.         try:
  66.             import codecs
  67.         except ImportError:
  68.             pass
  69.         else:
  70.             try:
  71.                 f = codecs.open(comps, 'r', 'utf16')
  72.                 encoder = codecs.getencoder('ascii')
  73.                 lines = map(lambda l, e=encoder: e(l)[0], f.readlines())
  74.             except (LookupError, UnicodeError):
  75.                 lines = codecs.open(comps, 'r', 'utf8').readlines()
  76.         if lines is None:
  77.             lines = open(comps, 'r').readlines()
  78.         if 'x86' == platform: platform = 'Win32'
  79.         found = 0
  80.         for line in lines:
  81.             line.strip()
  82.             if line.find(r'[VCVC_OBJECTS_PLATFORM_INFO%sDirectories]'%platform) >= 0:
  83.                 found = 1
  84.             elif line == '' or line[:1] == '[':
  85.                 found = 0
  86.             elif found == 1:
  87.                 kv = line.split('=', 1)
  88.                 if len(kv) == 2:
  89.                     (key, val) = kv
  90.                 key = key.replace(' Dirs','')
  91.                 dirs[key.upper()] = val
  92.         f.close()
  93.     else:
  94.         # since the file didn't exist, we have only the defaults in
  95.         # the registry to work with.
  96.         if 'x86' == platform: platform = 'Win32'
  97.         try:
  98.             K = 'SOFTWARE\Microsoft\VisualStudio\' + version
  99.             K = K + r'VCVC_OBJECTS_PLATFORM_INFO%sDirectories'%platform
  100.             k = SCons.Util.RegOpenKeyEx(SCons.Util.HKEY_LOCAL_MACHINE,K)
  101.             i = 0
  102.             while 1:
  103.                 try:
  104.                     (key,val,t) = SCons.Util.RegEnumValue(k,i)
  105.                     key = key.replace(' Dirs','')
  106.                     dirs[key.upper()] = val
  107.                     i = i + 1
  108.                 except SCons.Util.RegError:
  109.                     break
  110.         except SCons.Util.RegError:
  111.             # if we got here, then we didn't find the registry entries:
  112.             raise SCons.Errors.InternalError, "Unable to find MSVC paths in the registry."
  113.     return dirs
  114. def _parse_msvc8_overrides(version,platform,suite):
  115.     """ Parse any overridden defaults for MSVC directory locations
  116.     in MSVC 2005. """
  117.     # In VS8 the user can change the location of the settings file that
  118.     # contains the include, lib and binary paths. Try to get the location
  119.     # from registry
  120.     if not SCons.Util.can_read_reg:
  121.         raise SCons.Errors.InternalError, "No Windows registry module was found"
  122.     # XXX This code assumes anything that isn't EXPRESS uses the default
  123.     # registry key string.  Is this really true for all VS suites?
  124.     if suite == 'EXPRESS':
  125.         s = '\VCExpress\'
  126.     else:
  127.         s = '\VisualStudio\'
  128.     settings_path = ""
  129.     try:
  130.         (settings_path, t) = SCons.Util.RegGetValue(SCons.Util.HKEY_CURRENT_USER,
  131.                                                     r'SoftwareMicrosoft' + s + version +
  132.                                                     r'ProfileAutoSaveFile')
  133.         settings_path = settings_path.upper()
  134.     except SCons.Util.RegError:
  135.         raise SCons.Errors.InternalError, 
  136.               "The VS8 settings file location was not found in the registry."
  137.     # Look for potential environment variables in the settings path
  138.     if settings_path.find('%VSSPV_VISUALSTUDIO_DIR%') >= 0:
  139.         # First replace a special variable named %vsspv_visualstudio_dir%
  140.         # that is not found in the OSs environment variables...
  141.         try:
  142.             (value, t) = SCons.Util.RegGetValue(SCons.Util.HKEY_CURRENT_USER,
  143.                                                 r'SoftwareMicrosoft' + s + version +
  144.                                                 r'VisualStudioLocation')
  145.             settings_path = settings_path.replace('%VSSPV_VISUALSTUDIO_DIR%', value)
  146.         except SCons.Util.RegError:
  147.             raise SCons.Errors.InternalError, "The VS8 settings file location was not found in the registry."
  148.     if settings_path.find('%') >= 0:
  149.         # Collect global environment variables
  150.         env_vars = {}
  151.         # Read all the global environment variables of the current user
  152.         k = SCons.Util.RegOpenKeyEx(SCons.Util.HKEY_CURRENT_USER, r'Environment')
  153.         i = 0
  154.         while 1:
  155.             try:
  156.                 (key,val,t) = SCons.Util.RegEnumValue(k,i)
  157.                 env_vars[key.upper()] = val.upper()
  158.                 i = i + 1
  159.             except SCons.Util.RegError:
  160.                 break
  161.         # And some more variables that are not found in the registry
  162.         env_vars['USERPROFILE'] = os.getenv('USERPROFILE')
  163.         env_vars['SystemDrive'] = os.getenv('SystemDrive')
  164.         found_var = 1
  165.         while found_var:
  166.             found_var = 0
  167.             for env_var in env_vars:
  168.                 if settings_path.find(r'%' + env_var + r'%') >= 0:
  169.                     settings_path = settings_path.replace(r'%' + env_var + r'%', env_vars[env_var])
  170.                     found_var = 1
  171.     dirs = {}
  172.     if os.path.exists(settings_path):
  173.         # now we parse the directories from this file, if it exists.
  174.         import xml.dom.minidom
  175.         doc = xml.dom.minidom.parse(settings_path)
  176.         user_settings = doc.getElementsByTagName('UserSettings')[0]
  177.         tool_options = user_settings.getElementsByTagName('ToolsOptions')[0]
  178.         tool_options_categories = tool_options.getElementsByTagName('ToolsOptionsCategory')
  179.         environment_var_map = {
  180.             'IncludeDirectories' : 'INCLUDE',
  181.             'LibraryDirectories' : 'LIBRARY',
  182.             'ExecutableDirectories' : 'PATH',
  183.         }
  184.         for category in tool_options_categories:
  185.             category_name = category.attributes.get('name')
  186.             if category_name is not None and category_name.value == 'Projects':
  187.                 subcategories = category.getElementsByTagName('ToolsOptionsSubCategory')
  188.                 for subcategory in subcategories:
  189.                     subcategory_name = subcategory.attributes.get('name')
  190.                     if subcategory_name is not None and subcategory_name.value == 'VCDirectories':
  191.                         properties = subcategory.getElementsByTagName('PropertyValue')
  192.                         for property in properties:
  193.                             property_name = property.attributes.get('name')
  194.                             if property_name is None:
  195.                                 continue
  196.                             var_name = environment_var_map.get(property_name)
  197.                             if var_name:
  198.                                 data = property.childNodes[0].data
  199.                                 value_list = string.split(data, '|')
  200.                                 if len(value_list) == 1:
  201.                                     dirs[var_name] = value_list[0]
  202.                                 else:
  203.                                     while value_list:
  204.                                         dest, value = value_list[:2]
  205.                                         del value_list[:2]
  206.                                         # ToDo: Support for destinations
  207.                                         # other than Win32
  208.                                         if dest == 'Win32':
  209.                                             dirs[var_name] = value
  210.                                             break
  211.     else:
  212.         # There are no default directories in the registry for VS8 Express :(
  213.         raise SCons.Errors.InternalError, "Unable to find MSVC paths in the registry."
  214.     return dirs
  215. def _get_msvc7_path(path, version, platform):
  216.     """
  217.     Get Visual Studio directories from version 7 (MSVS .NET)
  218.     (it has a different registry structure than versions before it)
  219.     """
  220.     # first, look for a customization of the default values in the
  221.     # registry: These are sometimes stored in the Local Settings area
  222.     # for Visual Studio, in a file, so we have to parse it.
  223.     dirs = _parse_msvc7_overrides(version,platform)
  224.     if dirs.has_key(path):
  225.         p = dirs[path]
  226.     else:
  227.         raise SCons.Errors.InternalError, 
  228.               "Unable to retrieve the %s path from MS VC++."%path
  229.     # collect some useful information for later expansions...
  230.     paths = SCons.Tool.msvs.get_msvs_install_dirs(version)
  231.     # expand the directory path variables that we support.  If there
  232.     # is a variable we don't support, then replace that entry with
  233.     # "---Unknown Location VSInstallDir---" or something similar, to clue
  234.     # people in that we didn't find something, and so env expansion doesn't
  235.     # do weird things with the $(xxx)'s
  236.     s = re.compile('$(([a-zA-Z0-9_]+?))')
  237.     def repl(match, paths=paths):
  238.         key = string.upper(match.group(1))
  239.         if paths.has_key(key):
  240.             return paths[key]
  241.         else:
  242.             # Now look in the global environment variables
  243.             envresult = os.getenv(key)
  244.             if not envresult is None:
  245.                 return envresult + '\'
  246.             else:
  247.                 return '---Unknown Location %s---' % match.group()
  248.     rv = []
  249.     for entry in p.split(os.pathsep):
  250.         entry = s.sub(repl,entry).rstrip('nr')
  251.         rv.append(entry)
  252.     return string.join(rv,os.pathsep)
  253. def _get_msvc8_path(path, version, platform, suite):
  254.     """
  255.     Get Visual Studio directories from version 8 (MSVS 2005)
  256.     (it has a different registry structure than versions before it)
  257.     """
  258.     # first, look for a customization of the default values in the
  259.     # registry: These are sometimes stored in the Local Settings area
  260.     # for Visual Studio, in a file, so we have to parse it.
  261.     dirs = _parse_msvc8_overrides(version, platform, suite)
  262.     if dirs.has_key(path):
  263.         p = dirs[path]
  264.     else:
  265.         raise SCons.Errors.InternalError, 
  266.               "Unable to retrieve the %s path from MS VC++."%path
  267.     # collect some useful information for later expansions...
  268.     paths = SCons.Tool.msvs.get_msvs_install_dirs(version, suite)
  269.     # expand the directory path variables that we support.  If there
  270.     # is a variable we don't support, then replace that entry with
  271.     # "---Unknown Location VSInstallDir---" or something similar, to clue
  272.     # people in that we didn't find something, and so env expansion doesn't
  273.     # do weird things with the $(xxx)'s
  274.     s = re.compile('$(([a-zA-Z0-9_]+?))')
  275.     def repl(match, paths=paths):
  276.         key = string.upper(match.group(1))
  277.         if paths.has_key(key):
  278.             return paths[key]
  279.         else:
  280.             return '---Unknown Location %s---' % match.group()
  281.     rv = []
  282.     for entry in p.split(os.pathsep):
  283.         entry = s.sub(repl,entry).rstrip('nr')
  284.         rv.append(entry)
  285.     return string.join(rv,os.pathsep)
  286. def get_msvc_path(env, path, version):
  287.     """
  288.     Get a list of visualstudio directories (include, lib or path).
  289.     Return a string delimited by the os.pathsep separator (';'). An
  290.     exception will be raised if unable to access the registry or
  291.     appropriate registry keys not found.
  292.     """
  293.     if not SCons.Util.can_read_reg:
  294.         raise SCons.Errors.InternalError, "No Windows registry module was found"
  295.     # normalize the case for comparisons (since the registry is case
  296.     # insensitive)
  297.     path = string.upper(path)
  298.     if path=='LIB':
  299.         path= 'LIBRARY'
  300.     version_num, suite = SCons.Tool.msvs.msvs_parse_version(version)
  301.     if version_num >= 8.0:
  302.         platform = env.get('MSVS8_PLATFORM', 'x86')
  303.         suite = SCons.Tool.msvs.get_default_visualstudio8_suite(env)
  304.     else:
  305.         platform = 'x86'
  306.     if version_num >= 8.0:
  307.         return _get_msvc8_path(path, str(version_num), platform, suite)
  308.     elif version_num >= 7.0:
  309.         return _get_msvc7_path(path, str(version_num), platform)
  310.     path = string.upper(path + ' Dirs')
  311.     K = ('Software\Microsoft\Devstudio\%s\' +
  312.          'Build System\Components\Platforms\Win32 (x86)\Directories') % 
  313.         (version)
  314.     for base in (SCons.Util.HKEY_CURRENT_USER,
  315.                  SCons.Util.HKEY_LOCAL_MACHINE):
  316.         try:
  317.             k = SCons.Util.RegOpenKeyEx(base,K)
  318.             i = 0
  319.             while 1:
  320.                 try:
  321.                     (p,v,t) = SCons.Util.RegEnumValue(k,i)
  322.                     if string.upper(p) == path:
  323.                         return v
  324.                     i = i + 1
  325.                 except SCons.Util.RegError:
  326.                     break
  327.         except SCons.Util.RegError:
  328.             pass
  329.     # if we got here, then we didn't find the registry entries:
  330.     raise SCons.Errors.InternalError, "The %s path was not found in the registry."%path
  331. def _get_msvc6_default_paths(version, use_mfc_dirs):
  332.     """Return a 3-tuple of (INCLUDE, LIB, PATH) as the values of those
  333.     three environment variables that should be set in order to execute
  334.     the MSVC 6.0 tools properly, if the information wasn't available
  335.     from the registry."""
  336.     MVSdir = None
  337.     paths = {}
  338.     exe_path = ''
  339.     lib_path = ''
  340.     include_path = ''
  341.     try:
  342.         paths = SCons.Tool.msvs.get_msvs_install_dirs(version)
  343.         MVSdir = paths['VSINSTALLDIR']
  344.     except (SCons.Util.RegError, SCons.Errors.InternalError, KeyError):
  345.         if os.environ.has_key('MSDEVDIR'):
  346.             MVSdir = os.path.normpath(os.path.join(os.environ['MSDEVDIR'],'..','..'))
  347.         else:
  348.             MVSdir = r'C:Program FilesMicrosoft Visual Studio'
  349.     if MVSdir:
  350.         if SCons.Util.can_read_reg and paths.has_key('VCINSTALLDIR'):
  351.             MVSVCdir = paths['VCINSTALLDIR']
  352.         else:
  353.             MVSVCdir = os.path.join(MVSdir,'VC98')
  354.         MVSCommondir = r'%sCommon' % MVSdir
  355.         if use_mfc_dirs:
  356.             mfc_include_ = r'%sATLinclude;%sMFCinclude;' % (MVSVCdir, MVSVCdir)
  357.             mfc_lib_ = r'%sMFClib;' % MVSVCdir
  358.         else:
  359.             mfc_include_ = ''
  360.             mfc_lib_ = ''
  361.         include_path = r'%s%sinclude' % (mfc_include_, MVSVCdir)
  362.         lib_path = r'%s%slib' % (mfc_lib_, MVSVCdir)
  363.         if os.environ.has_key('OS') and os.environ['OS'] == "Windows_NT":
  364.             osdir = 'WINNT'
  365.         else:
  366.             osdir = 'WIN95'
  367.         exe_path = r'%stools%s;%sMSDev98bin;%stools;%sbin' % (MVSCommondir, osdir, MVSCommondir,  MVSCommondir, MVSVCdir)
  368.     return (include_path, lib_path, exe_path)
  369. def _get_msvc7_default_paths(env, version, use_mfc_dirs):
  370.     """Return a 3-tuple of (INCLUDE, LIB, PATH) as the values of those
  371.     three environment variables that should be set in order to execute
  372.     the MSVC .NET tools properly, if the information wasn't available
  373.     from the registry."""
  374.     MVSdir = None
  375.     paths = {}
  376.     exe_path = ''
  377.     lib_path = ''
  378.     include_path = ''
  379.     try:
  380.         paths = SCons.Tool.msvs.get_msvs_install_dirs(version)
  381.         MVSdir = paths['VSINSTALLDIR']
  382.     except (KeyError, SCons.Util.RegError, SCons.Errors.InternalError):
  383.         if os.environ.has_key('VSCOMNTOOLS'):
  384.             MVSdir = os.path.normpath(os.path.join(os.environ['VSCOMNTOOLS'],'..','..'))
  385.         else:
  386.             # last resort -- default install location
  387.             MVSdir = r'C:Program FilesMicrosoft Visual Studio .NET'
  388.     if MVSdir:
  389.         if SCons.Util.can_read_reg and paths.has_key('VCINSTALLDIR'):
  390.             MVSVCdir = paths['VCINSTALLDIR']
  391.         else:
  392.             MVSVCdir = os.path.join(MVSdir,'Vc7')
  393.         MVSCommondir = r'%sCommon7' % MVSdir
  394.         if use_mfc_dirs:
  395.             mfc_include_ = r'%satlmfcinclude;' % MVSVCdir
  396.             mfc_lib_ = r'%satlmfclib;' % MVSVCdir
  397.         else:
  398.             mfc_include_ = ''
  399.             mfc_lib_ = ''
  400.         include_path = r'%s%sinclude;%sPlatformSDKinclude' % (mfc_include_, MVSVCdir, MVSVCdir)
  401.         lib_path = r'%s%slib;%sPlatformSDKlib' % (mfc_lib_, MVSVCdir, MVSVCdir)
  402.         exe_path = r'%sIDE;%sbin;%sTools;%sToolsbin' % (MVSCommondir,MVSVCdir, MVSCommondir, MVSCommondir )
  403.         if SCons.Util.can_read_reg and paths.has_key('FRAMEWORKSDKDIR'):
  404.             include_path = include_path + r';%sinclude'%paths['FRAMEWORKSDKDIR']
  405.             lib_path = lib_path + r';%slib'%paths['FRAMEWORKSDKDIR']
  406.             exe_path = exe_path + r';%sbin'%paths['FRAMEWORKSDKDIR']
  407.         if SCons.Util.can_read_reg and paths.has_key('FRAMEWORKDIR') and paths.has_key('FRAMEWORKVERSION'):
  408.             exe_path = exe_path + r';%s%s'%(paths['FRAMEWORKDIR'],paths['FRAMEWORKVERSION'])
  409.     return (include_path, lib_path, exe_path)
  410. def _get_msvc8_default_paths(env, version, suite, use_mfc_dirs):
  411.     """Return a 3-tuple of (INCLUDE, LIB, PATH) as the values of those
  412.     three environment variables that should be set in order to execute
  413.     the MSVC 8 tools properly, if the information wasn't available
  414.     from the registry."""
  415.     MVSdir = None
  416.     paths = {}
  417.     exe_paths = []
  418.     lib_paths = []
  419.     include_paths = []
  420.     try:
  421.         paths = SCons.Tool.msvs.get_msvs_install_dirs(version, suite)
  422.         MVSdir = paths['VSINSTALLDIR']
  423.     except (KeyError, SCons.Util.RegError, SCons.Errors.InternalError):
  424.         if os.environ.has_key('VSCOMNTOOLS'):
  425.             MVSdir = os.path.normpath(os.path.join(os.environ['VSCOMNTOOLS'],'..','..'))
  426.         else:
  427.             # last resort -- default install location
  428.             MVSdir = os.getenv('ProgramFiles') + r'Microsoft Visual Studio 8'
  429.     if MVSdir:
  430.         if SCons.Util.can_read_reg and paths.has_key('VCINSTALLDIR'):
  431.             MVSVCdir = paths['VCINSTALLDIR']
  432.         else:
  433.             MVSVCdir = os.path.join(MVSdir,'VC')
  434.         MVSCommondir = os.path.join(MVSdir, 'Common7')
  435.         include_paths.append( os.path.join(MVSVCdir, 'include') )
  436.         lib_paths.append( os.path.join(MVSVCdir, 'lib') )
  437.         for base, subdir in [(MVSCommondir,'IDE'), (MVSVCdir,'bin'),
  438.                              (MVSCommondir,'Tools'), (MVSCommondir,r'Toolsbin')]:
  439.             exe_paths.append( os.path.join( base, subdir) )
  440.         if paths.has_key('PLATFORMSDKDIR'):
  441.             PlatformSdkDir = paths['PLATFORMSDKDIR']
  442.         else:
  443.             PlatformSdkDir = os.path.join(MVSVCdir,'PlatformSDK')
  444.         platform_include_path = os.path.join( PlatformSdkDir, 'Include' )
  445.         include_paths.append( platform_include_path )
  446.         lib_paths.append( os.path.join( PlatformSdkDir, 'Lib' ) )
  447.         if use_mfc_dirs:
  448.             if paths.has_key('PLATFORMSDKDIR'):
  449.                 include_paths.append( os.path.join( platform_include_path, 'mfc' ) )
  450.                 include_paths.append( os.path.join( platform_include_path, 'atl' ) )
  451.             else:
  452.                 atlmfc_path = os.path.join( MVSVCdir, 'atlmfc' )
  453.                 include_paths.append( os.path.join( atlmfc_path, 'include' ) )
  454.                 lib_paths.append( os.path.join( atlmfc_path, 'lib' ) )
  455.         if SCons.Util.can_read_reg and paths.has_key('FRAMEWORKSDKDIR'):
  456.             fwdir = paths['FRAMEWORKSDKDIR']
  457.             include_paths.append( os.path.join( fwdir, 'include' ) )
  458.             lib_paths.append( os.path.join( fwdir, 'lib' ) )
  459.             exe_paths.append( os.path.join( fwdir, 'bin' ) )
  460.         if SCons.Util.can_read_reg and paths.has_key('FRAMEWORKDIR') and paths.has_key('FRAMEWORKVERSION'):
  461.             exe_paths.append( os.path.join( paths['FRAMEWORKDIR'], paths['FRAMEWORKVERSION'] ) )
  462.     include_path = string.join( include_paths, os.pathsep )
  463.     lib_path = string.join(lib_paths, os.pathsep )
  464.     exe_path = string.join(exe_paths, os.pathsep )
  465.     return (include_path, lib_path, exe_path)
  466. def get_msvc_paths(env, version=None, use_mfc_dirs=0):
  467.     """Return a 3-tuple of (INCLUDE, LIB, PATH) as the values
  468.     of those three environment variables that should be set
  469.     in order to execute the MSVC tools properly."""
  470.     exe_path = ''
  471.     lib_path = ''
  472.     include_path = ''
  473.     if not version:
  474.         versions = SCons.Tool.msvs.get_visualstudio_versions()
  475.         if versions:
  476.             version = versions[0] #use highest version by default
  477.         else:
  478.             version = '6.0'
  479.     # Some of the configured directories only
  480.     # appear if the user changes them from the default.
  481.     # Therefore, we'll see if we can get the path to the MSDev
  482.     # base installation from the registry and deduce the default
  483.     # directories.
  484.     version_num, suite = SCons.Tool.msvs.msvs_parse_version(version)
  485.     if version_num >= 8.0:
  486.         suite = SCons.Tool.msvs.get_default_visualstudio8_suite(env)
  487.         defpaths = _get_msvc8_default_paths(env, version, suite, use_mfc_dirs)
  488.     elif version_num >= 7.0:
  489.         defpaths = _get_msvc7_default_paths(env, version, use_mfc_dirs)
  490.     else:
  491.         defpaths = _get_msvc6_default_paths(version, use_mfc_dirs)
  492.     try:
  493.         include_path = get_msvc_path(env, "include", version)
  494.     except (SCons.Util.RegError, SCons.Errors.InternalError):
  495.         include_path = defpaths[0]
  496.     try:
  497.         lib_path = get_msvc_path(env, "lib", version)
  498.     except (SCons.Util.RegError, SCons.Errors.InternalError):
  499.         lib_path = defpaths[1]
  500.     try:
  501.         exe_path = get_msvc_path(env, "path", version)
  502.     except (SCons.Util.RegError, SCons.Errors.InternalError):
  503.         exe_path = defpaths[2]
  504.     return (include_path, lib_path, exe_path)
  505. def get_msvc_default_paths(env, version=None, use_mfc_dirs=0):
  506.     """Return a 3-tuple of (INCLUDE, LIB, PATH) as the values of those
  507.     three environment variables that should be set in order to execute
  508.     the MSVC tools properly.  This will only return the default
  509.     locations for the tools, not the values used by MSVS in their
  510.     directory setup area.  This can help avoid problems with different
  511.     developers having different settings, and should allow the tools
  512.     to run in most cases."""
  513.     if not version and not SCons.Util.can_read_reg:
  514.         version = '6.0'
  515.     try:
  516.         if not version:
  517.             version = SCons.Tool.msvs.get_visualstudio_versions()[0] #use highest version
  518.     except KeyboardInterrupt:
  519.         raise
  520.     except:
  521.         pass
  522.     version_num, suite = SCons.Tool.msvs.msvs_parse_version(version)
  523.     if version_num >= 8.0:
  524.         suite = SCons.Tool.msvs.get_default_visualstudio8_suite(env)
  525.         return _get_msvc8_default_paths(env, version, suite, use_mfc_dirs)
  526.     elif version_num >= 7.0:
  527.         return _get_msvc7_default_paths(env, version, use_mfc_dirs)
  528.     else:
  529.         return _get_msvc6_default_paths(version, use_mfc_dirs)
  530. def validate_vars(env):
  531.     """Validate the PCH and PCHSTOP construction variables."""
  532.     if env.has_key('PCH') and env['PCH']:
  533.         if not env.has_key('PCHSTOP'):
  534.             raise SCons.Errors.UserError, "The PCHSTOP construction must be defined if PCH is defined."
  535.         if not SCons.Util.is_String(env['PCHSTOP']):
  536.             raise SCons.Errors.UserError, "The PCHSTOP construction variable must be a string: %r"%env['PCHSTOP']
  537. def pch_emitter(target, source, env):
  538.     """Adds the object file target."""
  539.     validate_vars(env)
  540.     pch = None
  541.     obj = None
  542.     for t in target:
  543.         if SCons.Util.splitext(str(t))[1] == '.pch':
  544.             pch = t
  545.         if SCons.Util.splitext(str(t))[1] == '.obj':
  546.             obj = t
  547.     if not obj:
  548.         obj = SCons.Util.splitext(str(pch))[0]+'.obj'
  549.     target = [pch, obj] # pch must be first, and obj second for the PCHCOM to work
  550.     return (target, source)
  551. def object_emitter(target, source, env, parent_emitter):
  552.     """Sets up the PCH dependencies for an object file."""
  553.     validate_vars(env)
  554.     parent_emitter(target, source, env)
  555.     if env.has_key('PCH') and env['PCH']:
  556.         env.Depends(target, env['PCH'])
  557.     return (target, source)
  558. def static_object_emitter(target, source, env):
  559.     return object_emitter(target, source, env,
  560.                           SCons.Defaults.StaticObjectEmitter)
  561. def shared_object_emitter(target, source, env):
  562.     return object_emitter(target, source, env,
  563.                           SCons.Defaults.SharedObjectEmitter)
  564. pch_action = SCons.Action.Action('$PCHCOM', '$PCHCOMSTR')
  565. pch_builder = SCons.Builder.Builder(action=pch_action, suffix='.pch',
  566.                                     emitter=pch_emitter,
  567.                                     source_scanner=SCons.Tool.SourceFileScanner)
  568. res_action = SCons.Action.Action('$RCCOM', '$RCCOMSTR')
  569. res_builder = SCons.Builder.Builder(action=res_action,
  570.                                     src_suffix='.rc',
  571.                                     suffix='.res',
  572.                                     src_builder=[],
  573.                                     source_scanner=SCons.Tool.SourceFileScanner)
  574. SCons.Tool.SourceFileScanner.add_scanner('.rc', SCons.Defaults.CScan)
  575. def generate(env):
  576.     """Add Builders and construction variables for MSVC++ to an Environment."""
  577.     static_obj, shared_obj = SCons.Tool.createObjBuilders(env)
  578.     for suffix in CSuffixes:
  579.         static_obj.add_action(suffix, SCons.Defaults.CAction)
  580.         shared_obj.add_action(suffix, SCons.Defaults.ShCAction)
  581.         static_obj.add_emitter(suffix, static_object_emitter)
  582.         shared_obj.add_emitter(suffix, shared_object_emitter)
  583.     for suffix in CXXSuffixes:
  584.         static_obj.add_action(suffix, SCons.Defaults.CXXAction)
  585.         shared_obj.add_action(suffix, SCons.Defaults.ShCXXAction)
  586.         static_obj.add_emitter(suffix, static_object_emitter)
  587.         shared_obj.add_emitter(suffix, shared_object_emitter)
  588.     env['CCPDBFLAGS'] = SCons.Util.CLVar(['${(PDB and "/Z7") or ""}'])
  589.     env['CCPCHFLAGS'] = SCons.Util.CLVar(['${(PCH and "/Yu%s /Fp%s"%(PCHSTOP or "",File(PCH))) or ""}'])
  590.     env['CCCOMFLAGS'] = '$CPPFLAGS $_CPPDEFFLAGS $_CPPINCFLAGS /c $SOURCES /Fo$TARGET $CCPCHFLAGS $CCPDBFLAGS'
  591.     env['CC']         = 'cl'
  592.     env['CCFLAGS']    = SCons.Util.CLVar('/nologo')
  593.     env['CFLAGS']     = SCons.Util.CLVar('')
  594.     env['CCCOM']      = '$CC $CFLAGS $CCFLAGS $CCCOMFLAGS'
  595.     env['SHCC']       = '$CC'
  596.     env['SHCCFLAGS']  = SCons.Util.CLVar('$CCFLAGS')
  597.     env['SHCFLAGS']   = SCons.Util.CLVar('$CFLAGS')
  598.     env['SHCCCOM']    = '$SHCC $SHCFLAGS $SHCCFLAGS $CCCOMFLAGS'
  599.     env['CXX']        = '$CC'
  600.     env['CXXFLAGS']   = SCons.Util.CLVar('$CCFLAGS $( /TP $)')
  601.     env['CXXCOM']     = '$CXX $CXXFLAGS $CCCOMFLAGS'
  602.     env['SHCXX']      = '$CXX'
  603.     env['SHCXXFLAGS'] = SCons.Util.CLVar('$CXXFLAGS')
  604.     env['SHCXXCOM']   = '$SHCXX $SHCXXFLAGS $CCCOMFLAGS'
  605.     env['CPPDEFPREFIX']  = '/D'
  606.     env['CPPDEFSUFFIX']  = ''
  607.     env['INCPREFIX']  = '/I'
  608.     env['INCSUFFIX']  = ''
  609. #    env.Append(OBJEMITTER = [static_object_emitter])
  610. #    env.Append(SHOBJEMITTER = [shared_object_emitter])
  611.     env['STATIC_AND_SHARED_OBJECTS_ARE_THE_SAME'] = 1
  612.     env['RC'] = 'rc'
  613.     env['RCFLAGS'] = SCons.Util.CLVar('')
  614.     env['RCCOM'] = '$RC $_CPPDEFFLAGS $_CPPINCFLAGS $RCFLAGS /fo$TARGET $SOURCES'
  615.     env['BUILDERS']['RES'] = res_builder
  616.     env['OBJPREFIX']      = ''
  617.     env['OBJSUFFIX']      = '.obj'
  618.     env['SHOBJPREFIX']    = '$OBJPREFIX'
  619.     env['SHOBJSUFFIX']    = '$OBJSUFFIX'
  620.     try:
  621.         version = SCons.Tool.msvs.get_default_visualstudio_version(env)
  622.         version_num, suite = SCons.Tool.msvs.msvs_parse_version(version)
  623.         if version_num == 8.0:
  624.             suite = SCons.Tool.msvs.get_default_visualstudio8_suite(env)
  625.         use_mfc_dirs = env.get('MSVS_USE_MFC_DIRS', 0)
  626.         if env.get('MSVS_IGNORE_IDE_PATHS', 0):
  627.             _get_paths = get_msvc_default_paths
  628.         else:
  629.             _get_paths = get_msvc_paths
  630.         include_path, lib_path, exe_path = _get_paths(env, version, use_mfc_dirs)
  631.         # since other tools can set these, we just make sure that the
  632.         # relevant stuff from MSVS is in there somewhere.
  633.         env.PrependENVPath('INCLUDE', include_path)
  634.         env.PrependENVPath('LIB', lib_path)
  635.         env.PrependENVPath('PATH', exe_path)
  636.     except (SCons.Util.RegError, SCons.Errors.InternalError):
  637.         pass
  638.     env['CFILESUFFIX'] = '.c'
  639.     env['CXXFILESUFFIX'] = '.cc'
  640.     env['PCHPDBFLAGS'] = SCons.Util.CLVar(['${(PDB and "/Yd") or ""}'])
  641.     env['PCHCOM'] = '$CXX $CXXFLAGS $CPPFLAGS $_CPPDEFFLAGS $_CPPINCFLAGS /c $SOURCES /Fo${TARGETS[1]} /Yc$PCHSTOP /Fp${TARGETS[0]} $CCPDBFLAGS $PCHPDBFLAGS'
  642.     env['BUILDERS']['PCH'] = pch_builder
  643.     if not env.has_key('ENV'):
  644.         env['ENV'] = {}
  645.     if not env['ENV'].has_key('SystemRoot'):    # required for dlls in the winsxs folders
  646.         env['ENV']['SystemRoot'] = SCons.Platform.win32.get_system_root()
  647. def exists(env):
  648.     if SCons.Tool.msvs.is_msvs_installed():
  649.         # there's at least one version of MSVS installed.
  650.         return 1
  651.     else:
  652.         return env.Detect('cl')