This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] powerpc max-page-size vs __QNXTARGET__


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=03aa968462e0345b2d846ca240b8c723d713761a

commit 03aa968462e0345b2d846ca240b8c723d713761a
Author: Alan Modra <amodra@gmail.com>
Date:   Thu Apr 12 20:10:36 2018 +0930

    powerpc max-page-size vs __QNXTARGET__
    
    The default max-page-size on ppc32 has been 64k since 1995-02-15 (git
    commit bcbe2c71).  There was a change committed 2003-07-12 to chose a
    4k page if __QNXTARGET__ is defined, but that particular commit was
    from an earlier posted patch
    https://sourceware.org/ml/binutils/2003-07/msg00211.html that only
    made the change effective for arm, rather than the later one
    https://sourceware.org/ml/binutils/2003-07/msg00220.html that also
    changed powerpc and sh..
    
    Since the __QNXTARGET__ #ifdef in elf32-ppc.c is ineffective unless
    the user defines it in his or her CFLAGS, I'm removing that code.
    
    	* elf32-ppc.c (ELF_MAXPAGESIZE, ELF_COMMONPAGESIZE): Don't depend
    	on __QNXTARGET__ define.

Diff:
---
 bfd/ChangeLog   | 5 +++++
 bfd/elf32-ppc.c | 5 -----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 7f999f7..c34cff6 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,5 +1,10 @@
 2018-04-14  Alan Modra  <amodra@gmail.com>
 
+	* elf32-ppc.c (ELF_MAXPAGESIZE, ELF_COMMONPAGESIZE): Don't depend
+	on __QNXTARGET__ define.
+
+2018-04-14  Alan Modra  <amodra@gmail.com>
+
 	* config.bfd: Add powerpc-*-lynxos* and powerpc-*-windiss*
 	to obsolete list.
 
diff --git a/bfd/elf32-ppc.c b/bfd/elf32-ppc.c
index 7f51fac..8629380 100644
--- a/bfd/elf32-ppc.c
+++ b/bfd/elf32-ppc.c
@@ -11389,13 +11389,8 @@ ppc_elf_finish_dynamic_sections (bfd *output_bfd,
 #define ELF_ARCH		bfd_arch_powerpc
 #define ELF_TARGET_ID		PPC32_ELF_DATA
 #define ELF_MACHINE_CODE	EM_PPC
-#ifdef __QNXTARGET__
-#define ELF_MAXPAGESIZE		0x1000
-#define ELF_COMMONPAGESIZE	0x1000
-#else
 #define ELF_MAXPAGESIZE		0x10000
 #define ELF_COMMONPAGESIZE	0x10000
-#endif
 #define ELF_MINPAGESIZE		0x1000
 #define elf_info_to_howto	ppc_elf_info_to_howto


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]