From 7860fe38465c4a08977b2b65d142be9ebb0270eb Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Fri, 6 Oct 1995 19:49:48 +0000 Subject: * coffcode.h (coff_write_object_contents): On AIX, clear F_RELFLG if there are symbols, for native AIX ld compatibility. --- bfd/coffcode.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'bfd/coffcode.h') diff --git a/bfd/coffcode.h b/bfd/coffcode.h index 327d575..152f6f1 100644 --- a/bfd/coffcode.h +++ b/bfd/coffcode.h @@ -2072,7 +2072,14 @@ coff_write_object_contents (abfd) backend linker, and obj_raw_syment_count is not valid until after coff_write_symbols is called. */ if (obj_raw_syment_count (abfd) != 0) - internal_f.f_symptr = sym_base; + { + internal_f.f_symptr = sym_base; +#ifdef RS6000COFF_C + /* AIX appears to require that F_RELFLG not be set if there are + local symbols but no relocations. */ + internal_f.f_flags &=~ F_RELFLG; +#endif + } else { internal_f.f_symptr = 0; -- cgit v1.1