aboutsummaryrefslogtreecommitdiff
path: root/gold/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'gold/debug.h')
-rw-r--r--gold/debug.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gold/debug.h b/gold/debug.h
index c6bfb7a..e37e2f1 100644
--- a/gold/debug.h
+++ b/gold/debug.h
@@ -32,8 +32,9 @@ namespace gold
// The different types of debugging we support. These are bitflags.
const int DEBUG_TASK = 1;
+const int DEBUG_SCRIPT = 2;
-const int DEBUG_ALL = DEBUG_TASK;
+const int DEBUG_ALL = DEBUG_TASK | DEBUG_SCRIPT;
// Print a debug message if TYPE is enabled. This is a macro so that
// we only evaluate the arguments if necessary.