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 | f09cf794b2dbf820acd6912ac7f986cc8c10d455 (patch) | |
tree | e994d5104a10b6dd448afee90cd411931cf6670a /src/engine/SCons/Script | |
parent | 6188ab24587a1e8ebb5dc7dabcb1ab66f77d4a13 (diff) | |
download | SCons-f09cf794b2dbf820acd6912ac7f986cc8c10d455.zip SCons-f09cf794b2dbf820acd6912ac7f986cc8c10d455.tar.gz SCons-f09cf794b2dbf820acd6912ac7f986cc8c10d455.tar.bz2 |
Optimize out N*M suffix matching in Builder.py.
Diffstat (limited to 'src/engine/SCons/Script')
-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: |