diff options
author | Ian Lance Taylor <iant@google.com> | 2008-01-23 01:31:13 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2008-01-23 01:31:13 +0000 |
commit | 494e05f4405228561f0af4d424136128ff8830d2 (patch) | |
tree | ef8756394ecd755f133be5dc2dfc9b086f6c0cb4 /gold/debug.h | |
parent | 64f926997fdf212014e331a695a25b8144182320 (diff) | |
download | binutils-494e05f4405228561f0af4d424136128ff8830d2.zip binutils-494e05f4405228561f0af4d424136128ff8830d2.tar.gz binutils-494e05f4405228561f0af4d424136128ff8830d2.tar.bz2 |
Parse a SECTIONS clause in a linker script.
Diffstat (limited to 'gold/debug.h')
-rw-r--r-- | gold/debug.h | 3 |
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. |