* pdp11.c (aout_link_add_symbols): Ignore debug symbols.
This commit is contained in:
parent
8be6259eb2
commit
0c98115d15
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2010-12-02 Paul Koning <ni1d@arrl.net>
|
||||
|
||||
* pdp11.c (aout_link_add_symbols): Ignore debug symbols.
|
||||
|
||||
2010-11-30 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||
|
||||
* config.bfd: Add sparc64-rtems.
|
||||
|
|
|
@ -2777,7 +2777,9 @@ aout_link_add_symbols (bfd *abfd, struct bfd_link_info *info)
|
|||
switch (type)
|
||||
{
|
||||
default:
|
||||
abort ();
|
||||
/* Anything else should be a debugging symbol. */
|
||||
BFD_ASSERT ((type & N_STAB) != 0);
|
||||
continue;
|
||||
|
||||
case N_UNDF:
|
||||
case N_ABS:
|
||||
|
|
Loading…
Reference in a new issue