Package SCons :: Module Defaults
[hide private]
[frames] | no frames]

Module Defaults

source code

SCons.Defaults

Builders and other things for the local site. Here's where we'll duplicate the functionality of autoconf until we move it into the installation procedure or use something like qmconf.

The code that reads the registry to find MSVC components was borrowed from distutils.msvccompiler.

Classes [hide private]
  NullCmdGenerator
This is a callable class that can be used in place of other command generators if you don't want them to do anything.
  Variable_Method_Caller
A class for finding a construction variable on the stack and calling one of its methods.
Functions [hide private]
 
_fetch_DefaultEnvironment(*args, **kw)
Returns the already-created default construction environment.
source code
 
DefaultEnvironment(*args, **kw)
Initial public entry point for creating the default construction Environment.
source code
 
StaticObjectEmitter(target, source, env) source code
 
SharedObjectEmitter(target, source, env) source code
 
SharedFlagChecker(source, target, env) source code
 
get_paths_str(dest) source code
 
chmod_func(dest, mode) source code
 
chmod_strfunc(dest, mode) source code
 
copy_func(dest, src) source code
 
delete_func(dest, must_exist=0) source code
 
delete_strfunc(dest, must_exist=0) source code
 
mkdir_func(dest) source code
 
move_func(dest, src) source code
 
touch_func(dest) source code
 
_concat(prefix, list, suffix, env, f=<function <lambda> at 0x2be51b8>, target=None, source=None)
Creates a new list from 'list' by first interpolating each element in the list using the 'env' dictionary and then calling f on the list, and finally calling _concat_ixes to concatenate 'prefix' and 'suffix' onto each element of the list.
source code
 
_concat_ixes(prefix, list, suffix, env)
Creates a new list from 'list' by concatenating the 'prefix' and 'suffix' arguments onto each element of the list. A trailing space on 'prefix' or leading space on 'suffix' will cause them to be put into separate list elements rather than being concatenated.
source code
 
_stripixes(prefix, itms, suffix, stripprefixes, stripsuffixes, env, c=None)
This is a wrapper around _concat()/_concat_ixes() that checks for the existence of prefixes or suffixes on list items and strips them where it finds them. This is used by tools (like the GNU linker) that need to turn something like 'libfoo.a' into '-lfoo'.
source code
 
processDefines(defs)
process defines, resolving strings, lists, dictionaries, into a list of strings
source code
 
_defines(prefix, defs, suffix, env, c=<function _concat_ixes at 0x2be52a8>)
A wrapper around _concat_ixes that turns a list or string into a list of C preprocessor command-line definitions.
source code
Variables [hide private]
  __revision__ = 'src/engine/SCons/Defaults.py issue-2856:2676:d...
  _default_env = None
hash(x)
  SharedCheck = SCons.Action.Action(SharedFlagChecker, None)
  CScan = SCons.Defaults.CScan
  DScan = SCons.Tool.DScanner
  LaTeXScan = SCons.Tool.LaTeXScanner
  ObjSourceScan = SCons.Tool.SourceFileScanner
  ProgScan = SCons.Tool.ProgramScanner
  DirScanner = SCons.Defaults.DirScanner
  DirEntryScanner = SCons.Scanner.Dir.DirEntryScanner()
  CAction = SCons.Action.Action("$CCCOM", "$CCCOMSTR")
  ShCAction = SCons.Action.Action("$SHCCCOM", "$SHCCCOMSTR")
  CXXAction = SCons.Action.Action("$CXXCOM", "$CXXCOMSTR")
  ShCXXAction = SCons.Action.Action("$SHCXXCOM", "$SHCXXCOMSTR")
  ASAction = SCons.Action.Action("$ASCOM", "$ASCOMSTR")
  ASPPAction = SCons.Action.Action("$ASPPCOM", "$ASPPCOMSTR")
  LinkAction = SCons.Action.Action("$LINKCOM", "$LINKCOMSTR")
  ShLinkAction = SCons.Action.Action("$SHLINKCOM", "$SHLINKCOMSTR")
  LdModuleLinkAction = SCons.Action.Action("$LDMODULECOM", "$LDM...
  Chmod = SCons.Defaults.Chmod
  Copy = SCons.Defaults.Copy
  Delete = SCons.Defaults.Delete
  Mkdir = SCons.Defaults.Mkdir
  Move = SCons.Defaults.Move
  Touch = SCons.Defaults.Touch
  ConstructionEnvironment = {'BUILDERS': {}, 'CONFIGUREDIR': '#/...
  __package__ = 'SCons'
Function Details [hide private]

DefaultEnvironment(*args, **kw)

source code 

Initial public entry point for creating the default construction Environment.

After creating the environment, we overwrite our name (DefaultEnvironment) with the _fetch_DefaultEnvironment() function, which more efficiently returns the initialized default construction environment without checking for its existence.

(This function still exists with its _default_check because someone else (cough Script/__init__.py cough) may keep a reference to this function. So we can't use the fully functional idiom of having the name originally be a something that only creates the construction environment and then overwrites the name.)


Variables Details [hide private]

__revision__

Value:
'src/engine/SCons/Defaults.py issue-2856:2676:d23b7a2f45e8 2012/08/05 \
15:38:28 garyo'

LdModuleLinkAction

Value:
SCons.Action.Action("$LDMODULECOM", "$LDMODULECOMSTR")

ConstructionEnvironment

Value:
{'BUILDERS': {},
 'CONFIGUREDIR': '#/.sconf_temp',
 'CONFIGURELOG': '#/config.log',
 'CPPSUFFIXES': ['.c',
                 '.C',
                 '.cxx',
                 '.cpp',
                 '.c++',
...