From 62d92348fec5dcb987573d82f7cb514bd1141705 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Tue, 17 Jul 2007 01:24:04 +0100 Subject: [PATCH] Added symbols that the DBG() macros will use. --- src/util/symcheck.pl | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/util/symcheck.pl b/src/util/symcheck.pl index 6e46ae46..e0099c41 100755 --- a/src/util/symcheck.pl +++ b/src/util/symcheck.pl @@ -70,6 +70,18 @@ foreach my $link_sym qw ( __prefix _prefix _prefix_load_offset }; } +# Add symbols that we know will be used by the debug system +# +foreach my $debug_sym qw ( dbg_autocolourise dbg_decolourise + dbg_hex_dump_da ) { + $symtab->{DEBUG}->{$debug_sym} = { + global => 1, + section => undef, + value => 0, + size => 0, + }; +} + # Build up requires, provides and shares symbol tables for global # symbols #