diff options
author | Steven Knight <knight@baldmt.com> | 2005-06-01 12:13:56 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2005-06-01 12:13:56 (GMT) |
commit | 1d3c36ee983d5f26bbd9cf9733a8084eced1b2c4 (patch) | |
tree | 861f489ee66c3c257dbe27b7f8838b78b8ee1bc0 /doc | |
parent | e21fab68f13999f4e0051ce75977f9c395940b6f (diff) | |
download | SCons-1d3c36ee983d5f26bbd9cf9733a8084eced1b2c4.zip SCons-1d3c36ee983d5f26bbd9cf9733a8084eced1b2c4.tar.gz SCons-1d3c36ee983d5f26bbd9cf9733a8084eced1b2c4.tar.bz2 |
Add a --debug=nomemoizer option to disable memoization.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/scons.1 | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1 index 5eae209..6e95311 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -552,6 +552,22 @@ before and after reading the SConscript files and before and after building targets. .TP +--debug=nomemoizer +Disables use of the Memoizer, +the internal SCons subsystem for caching +various values in memory instead of +recomputing them each time they're needed. +This provides more accurate counts of the +underlying function calls in the +Python profiler output when using the +.R --profile= +option. +(When the Memoizer is used, +the profiler counts all +memoized functions as being executed +by the Memoizer's wrapper calls.) + +.TP --debug=objects Prints a list of the various objects of the various classes used internally by SCons. |