|
|
|
SetCacheMode(mode)
Set the Configure cache mode. mode must be one of "auto", "force",
or "cache". |
source code
|
|
|
SetProgressDisplay(display)
Set the progress display to use (called from SCons.Script) |
source code
|
|
|
|
|
|
|
CreateConfigHBuilder(env)
Called just before the building targets phase begins. |
source code
|
|
|
|
|
|
|
|
|
CheckFunc(context,
function_name,
header=None,
language=None) |
source code
|
|
|
CheckType(context,
type_name,
includes='
' ,
language=None) |
source code
|
|
|
CheckTypeSize(context,
type_name,
includes='
' ,
language=None,
expect=None) |
source code
|
|
|
CheckDeclaration(context,
declaration,
includes='
' ,
language=None) |
source code
|
|
|
createIncludesFromHeaders(headers,
leaveLast,
include_quotes=' "" ' ) |
source code
|
|
|
CheckHeader(context,
header,
include_quotes=' <> ' ,
language=None)
A test for a C or C++ header file. |
source code
|
|
|
|
|
|
|
|
|
|
|
CheckCHeader(context,
header,
include_quotes=' "" ' )
A test for a C header file. |
source code
|
|
|
CheckCXXHeader(context,
header,
include_quotes=' "" ' )
A test for a C++ header file. |
source code
|
|
|
CheckLib(context,
library=None,
symbol=' main ' ,
header=None,
language=None,
autoadd=1)
A test for a library. See also CheckLibWithHeader.
Note that library may also be None to test whether the given symbol
compiles without flags. |
source code
|
|
|
CheckLibWithHeader(context,
libs,
header,
language,
call=None,
autoadd=1)
Another (more sophisticated) test for a library.
Checks, if library and header is available for language (may be 'C'
or 'CXX'). Call maybe be a valid expression _with_ a trailing ';'.
As in CheckLib, we support library=None, to test if the call compiles
without extra link flags. |
source code
|
|