Browse Source

Linker no longer provides start and end symbols for each table; these

markers are now static labels within the objects that refer to them.
tags/v0.9.3
Michael Brown 19 years ago
parent
commit
69f09ebdd8
1 changed files with 1 additions and 5 deletions
  1. 1
    5
      src/util/symcheck.pl

+ 1
- 5
src/util/symcheck.pl View File

@@ -21,11 +21,7 @@ while ( ( my $symbol, my $info ) = each %$symbols ) {
21 21
 }
22 22
 $symbols->{$_}->{provides}->{LINKER} = 1
23 23
     foreach qw ( _prefix _eprefix _decompress _edecompress _text
24
-		 _etext _data _edata _bss _ebss _end device_drivers
25
-		 device_drivers_end bus_drivers bus_drivers_end
26
-		 type_drivers type_drivers_end console_drivers
27
-		 console_drivers_end post_reloc_fns post_reloc_fns_end
28
-		 init_fns init_fns_end );
24
+		 _etext _data _edata _bss _ebss _end );
29 25
 
30 26
 # Check for multiply defined, never-defined and unused symbols
31 27
 #

Loading…
Cancel
Save