From: stevenknight Date: Tue, 11 Feb 2003 04:43:51 +0000 (+0000) Subject: Disable annotation of nodes with the calling stack frame. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2f37ec4f0e3da77ff93ff780a90f489ce972b7eb;p=scons.git Disable annotation of nodes with the calling stack frame. git-svn-id: http://scons.tigris.org/svn/scons/trunk@586 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- diff --git a/src/engine/SCons/Script/SConscript.py b/src/engine/SCons/Script/SConscript.py index c94ff2cf..f2d07fdb 100644 --- a/src/engine/SCons/Script/SConscript.py +++ b/src/engine/SCons/Script/SConscript.py @@ -239,8 +239,11 @@ def annotate(node): return last_text = frame[3] -SCons.Node.Annotate = annotate - +# The following line would cause each Node to be annotated using the +# above function. Unfortunately, this is a *huge* performance hit, so +# leave this disabled until we find a more efficient mechanism. +#SCons.Node.Annotate = annotate + def Default(*targets): global default_targets if default_targets is None: