]> git.eshelyaron.com Git - emacs.git/commitdiff
(DATA_SEG_BITS) [__linux__]: Define for GCC
authorGerd Moellmann <gerd@gnu.org>
Mon, 17 Sep 2001 11:37:15 +0000 (11:37 +0000)
committerGerd Moellmann <gerd@gnu.org>
Mon, 17 Sep 2001 11:37:15 +0000 (11:37 +0000)
versions >= 2.95.

src/m/macppc.h

index ea7f7b248d0057fcdd9692008ebc8cfa6970fc16..a3a5dc3da201637a2764f43449d7a21201883ebb 100644 (file)
@@ -1,5 +1,5 @@
 /* machine description file For the powerpc Macintosh.
-   Copyright (C) 1994 Free Software Foundation, Inc.
+   Copyright (C) 1994, 2001 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
@@ -97,3 +97,8 @@ Boston, MA 02111-1307, USA.  */
 #define LINKER $(CC) -nostdlib
 #define LD_SWITCH_MACHINE -Xlinker -m -Xlinker elf32ppc
 #endif
+
+/* GCC 2.95 on GNU/Linux PPC changed the load address to 0x10000000.  */
+#if defined(__linux__) && __GNUC__ == 2 && __GNUC_MINOR__ >= 95
+#define DATA_SEG_BITS  0x10000000
+#endif