* solib.c (solib_bfd_open): Relax a bit the compatibility check.

This commit is contained in:
Joel Brobecker
2009-09-22 23:03:30 +00:00
parent c4e86dd4d0
commit 69e2bf1796
2 changed files with 5 additions and 1 deletions

View File

@@ -310,7 +310,7 @@ solib_bfd_open (char *pathname)
/* Check bfd arch. */
b = gdbarch_bfd_arch_info (target_gdbarch);
if (b->compatible (b, bfd_get_arch_info (abfd)) != b)
if (!b->compatible (b, bfd_get_arch_info (abfd)))
warning (_("`%s': Shared library architecture %s is not compatible "
"with target architecture %s."), found_pathname,
bfd_get_arch_info (abfd)->printable_name, b->printable_name);