tekhex architecture
Alan Modra
amodra@gmail.com
Fri Nov 7 10:55:00 GMT 2014
is a don't care.
* tekhex.c (tekhex_set_arch_mach): Ignore unknown arch errors.
diff --git a/bfd/tekhex.c b/bfd/tekhex.c
index aaebcee..0328689 100644
--- a/bfd/tekhex.c
+++ b/bfd/tekhex.c
@@ -677,7 +677,9 @@ tekhex_set_arch_mach (bfd *abfd,
enum bfd_architecture arch,
unsigned long machine)
{
- return bfd_default_set_arch_mach (abfd, arch, machine);
+ /* Ignore errors about unknown architecture. */
+ return (bfd_default_set_arch_mach (abfd, arch, machine)
+ || arch == bfd_arch_unknown);
}
/* We have to save up all the Tekhexords for a splurge before output. */
--
Alan Modra
Australia Development Lab, IBM
More information about the Binutils
mailing list