diff options
Diffstat (limited to 'bfd/archures.c')
-rw-r--r-- | bfd/archures.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/bfd/archures.c b/bfd/archures.c index 69ca6b1..15077bc 100644 --- a/bfd/archures.c +++ b/bfd/archures.c @@ -807,6 +807,18 @@ bfd_default_scan (info, string) switch (number) { /* FIXME: These are needed to parse IEEE objects. */ + /* The following seven case's are here only for compatibility with + older binutils (at least IEEE objects from binutils 2.9.1 require + them). */ + case bfd_mach_m68000: + case bfd_mach_m68010: + case bfd_mach_m68020: + case bfd_mach_m68030: + case bfd_mach_m68040: + case bfd_mach_m68060: + case bfd_mach_cpu32: + arch = bfd_arch_m68k; + break; case 68000: arch = bfd_arch_m68k; number = bfd_mach_m68000; |