From 0f5282ba0d7a5b96c2e5bec6eedb3027aa3fd52a Mon Sep 17 00:00:00 2001 From: Steven Knight Date: Tue, 11 Feb 2003 04:43:51 +0000 Subject: Disable annotation of nodes with the calling stack frame. --- src/engine/SCons/Script/SConscript.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/engine/SCons/Script/SConscript.py b/src/engine/SCons/Script/SConscript.py index c94ff2c..f2d07fd 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: -- cgit v0.12