diff options
author | Steven Knight <knight@baldmt.com> | 2005-03-04 21:27:30 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2005-03-04 21:27:30 (GMT) |
commit | 213996506374ad40fc7ee4949e2be3790ead99d9 (patch) | |
tree | e994d5104a10b6dd448afee90cd411931cf6670a /src/engine/SCons/Script/Main.py | |
parent | 3bf4475522d2a24910b147a607dcd9f0d980097f (diff) | |
download | SCons-213996506374ad40fc7ee4949e2be3790ead99d9.zip SCons-213996506374ad40fc7ee4949e2be3790ead99d9.tar.gz SCons-213996506374ad40fc7ee4949e2be3790ead99d9.tar.bz2 |
Optimize out N*M suffix matching in Builder.py.
Diffstat (limited to 'src/engine/SCons/Script/Main.py')
-rw-r--r-- | src/engine/SCons/Script/Main.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/engine/SCons/Script/Main.py b/src/engine/SCons/Script/Main.py index f50273e..f66f214 100644 --- a/src/engine/SCons/Script/Main.py +++ b/src/engine/SCons/Script/Main.py @@ -1127,6 +1127,11 @@ def _main(args, parser): print "Memoizer (memory cache) hits and misses:" SCons.Memoize.Dump() + # Dump any caller counts. This is purely for internal debugging + # during development, so there's no need to control it with a + # --debug= option. + SCons.Debug.dump_caller_counts() + def _exec_main(): all_args = sys.argv[1:] try: |