Mercurial > emacs
annotate src/m/macppc.h @ 44373:5be168598322
Minor change for TeX filling improvement.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 03 Apr 2002 15:21:07 +0000 |
parents | 0bd966523c89 |
children | 4be8406ebef9 |
rev | line source |
---|---|
25834 | 1 /* machine description file For the powerpc Macintosh. |
39311
ac26c99a7a0c
(DATA_SEG_BITS) [__linux__]: Define for GCC
Gerd Moellmann <gerd@gnu.org>
parents:
30011
diff
changeset
|
2 Copyright (C) 1994, 2001 Free Software Foundation, Inc. |
25834 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
8 the Free Software Foundation; either version 1, or (at your option) | |
9 any later version. | |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
19 Boston, MA 02111-1307, USA. */ | |
20 | |
21 /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | |
22 is the most significant byte. */ | |
23 | |
24 #define WORDS_BIG_ENDIAN | |
25 | |
26 /* Define NO_ARG_ARRAY if you cannot take the address of the first of a | |
27 * group of arguments and treat it as an array of the arguments. */ | |
28 | |
29 #define NO_ARG_ARRAY | |
30 | |
31 /* Define WORD_MACHINE if addresses and such have | |
32 * to be corrected before they can be used as byte counts. */ | |
33 | |
34 /* #define WORD_MACHINE */ | |
35 | |
36 /* Now define a symbol for the cpu type, if your compiler | |
37 does not define it automatically: | |
38 Ones defined so far include vax, m68000, ns16000, pyramid, | |
39 orion, tahoe, APOLLO and many others */ | |
40 | |
41 /* Use type EMACS_INT rather than a union, to represent Lisp_Object */ | |
42 /* This is desirable for most machines. */ | |
43 | |
44 #define NO_UNION_TYPE | |
45 | |
46 /* Data type of load average, as read out of kmem. */ | |
47 | |
48 #define LOAD_AVE_TYPE long | |
49 | |
50 /* Convert that into an integer that is 100 for a load average of 1.0 */ | |
51 | |
52 #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE) | |
53 | |
54 /* Define C_ALLOCA if this machine does not support a true alloca | |
55 and the one written in C should be used instead. | |
56 Define HAVE_ALLOCA to say that the system provides a properly | |
57 working alloca function and it should be used. | |
58 Define neither one if an assembler-language alloca | |
59 in the file alloca.s should be used. */ | |
60 | |
61 #define HAVE_ALLOCA | |
62 | |
63 /* Some really obscure 4.2-based systems (like Sequent DYNIX) | |
64 * do not support asynchronous I/O (using SIGIO) on sockets, | |
65 * even though it works fine on tty's. If you have one of | |
66 * these systems, define the following, and then use it in | |
67 * config.h (or elsewhere) to decide when (not) to use SIGIO. | |
68 * | |
69 * You'd think this would go in an operating-system description file, | |
70 * but since it only occurs on some, but not all, BSD systems, the | |
71 * reasonable place to select for it is in the machine description | |
72 * file. | |
73 */ | |
74 | |
75 /* #define NO_SOCK_SIGIO */ | |
76 | |
28646
61ea94b6ee1f
(ORDINARY_LINK): Define for NetBSD.
Gerd Moellmann <gerd@gnu.org>
parents:
25834
diff
changeset
|
77 #if defined(__OpenBSD__) |
25834 | 78 #define ORDINARY_LINK |
79 #endif | |
80 | |
81 #define UNEXEC unexelf.o | |
82 | |
83 #define NO_TERMIO | |
84 | |
85 #if defined (LINUX) || defined (__NetBSD__) || defined (__OpenBSD__) | |
86 # define TEXT_END ({ extern int _etext; &_etext; }) | |
87 #endif | |
88 | |
89 #if (defined (__NetBSD__) || defined (__OpenBSD__)) && defined (__ELF__) | |
90 #define HAVE_TEXT_START | |
91 #endif | |
30011
aa56df73f23a
(LINKER, LD_SWITCH_MACHINE) [LINUX]: Define.
Gerd Moellmann <gerd@gnu.org>
parents:
28646
diff
changeset
|
92 |
aa56df73f23a
(LINKER, LD_SWITCH_MACHINE) [LINUX]: Define.
Gerd Moellmann <gerd@gnu.org>
parents:
28646
diff
changeset
|
93 /* NAKAJI Hiroyuki <nakaji@tutrp.tut.ac.jp> says this is needed |
aa56df73f23a
(LINKER, LD_SWITCH_MACHINE) [LINUX]: Define.
Gerd Moellmann <gerd@gnu.org>
parents:
28646
diff
changeset
|
94 For MkLinux/LinuxPPC. */ |
aa56df73f23a
(LINKER, LD_SWITCH_MACHINE) [LINUX]: Define.
Gerd Moellmann <gerd@gnu.org>
parents:
28646
diff
changeset
|
95 |
aa56df73f23a
(LINKER, LD_SWITCH_MACHINE) [LINUX]: Define.
Gerd Moellmann <gerd@gnu.org>
parents:
28646
diff
changeset
|
96 #ifdef LINUX |
aa56df73f23a
(LINKER, LD_SWITCH_MACHINE) [LINUX]: Define.
Gerd Moellmann <gerd@gnu.org>
parents:
28646
diff
changeset
|
97 #define LINKER $(CC) -nostdlib |
aa56df73f23a
(LINKER, LD_SWITCH_MACHINE) [LINUX]: Define.
Gerd Moellmann <gerd@gnu.org>
parents:
28646
diff
changeset
|
98 #define LD_SWITCH_MACHINE -Xlinker -m -Xlinker elf32ppc |
40198
0bd966523c89
[LINUX]: Undef LD_SWITCH_SYSTEM_TEMACS and override
Eli Zaretskii <eliz@gnu.org>
parents:
39492
diff
changeset
|
99 /* s/gnu-linux.h defines this to `-z nocombreloc' which does not work here |
0bd966523c89
[LINUX]: Undef LD_SWITCH_SYSTEM_TEMACS and override
Eli Zaretskii <eliz@gnu.org>
parents:
39492
diff
changeset
|
100 because prefix-args is not used. */ |
0bd966523c89
[LINUX]: Undef LD_SWITCH_SYSTEM_TEMACS and override
Eli Zaretskii <eliz@gnu.org>
parents:
39492
diff
changeset
|
101 #undef LD_SWITCH_SYSTEM_TEMACS |
0bd966523c89
[LINUX]: Undef LD_SWITCH_SYSTEM_TEMACS and override
Eli Zaretskii <eliz@gnu.org>
parents:
39492
diff
changeset
|
102 #define LD_SWITCH_MACHINE_TEMACS -Xlinker -znocombreloc |
30011
aa56df73f23a
(LINKER, LD_SWITCH_MACHINE) [LINUX]: Define.
Gerd Moellmann <gerd@gnu.org>
parents:
28646
diff
changeset
|
103 #endif |
39311
ac26c99a7a0c
(DATA_SEG_BITS) [__linux__]: Define for GCC
Gerd Moellmann <gerd@gnu.org>
parents:
30011
diff
changeset
|
104 |
39492
11c635084cb7
Put in #if 0 until we know what's
Gerd Moellmann <gerd@gnu.org>
parents:
39341
diff
changeset
|
105 #if 0 /* This breaks things on PPC GNU/Linux ecept for Yellowdog, |
11c635084cb7
Put in #if 0 until we know what's
Gerd Moellmann <gerd@gnu.org>
parents:
39341
diff
changeset
|
106 even with identical GCC, as, ld. Let's take it out until we |
11c635084cb7
Put in #if 0 until we know what's
Gerd Moellmann <gerd@gnu.org>
parents:
39341
diff
changeset
|
107 know what's really going on here. */ |
39341
3c7fb43900bd
(DATA_SEG_BITS): Also define for GCC 3.
Gerd Moellmann <gerd@gnu.org>
parents:
39311
diff
changeset
|
108 /* GCC 2.95 and newer on GNU/Linux PPC changed the load address to |
3c7fb43900bd
(DATA_SEG_BITS): Also define for GCC 3.
Gerd Moellmann <gerd@gnu.org>
parents:
39311
diff
changeset
|
109 0x10000000. */ |
3c7fb43900bd
(DATA_SEG_BITS): Also define for GCC 3.
Gerd Moellmann <gerd@gnu.org>
parents:
39311
diff
changeset
|
110 #if defined __linux__ |
3c7fb43900bd
(DATA_SEG_BITS): Also define for GCC 3.
Gerd Moellmann <gerd@gnu.org>
parents:
39311
diff
changeset
|
111 #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95) |
39311
ac26c99a7a0c
(DATA_SEG_BITS) [__linux__]: Define for GCC
Gerd Moellmann <gerd@gnu.org>
parents:
30011
diff
changeset
|
112 #define DATA_SEG_BITS 0x10000000 |
ac26c99a7a0c
(DATA_SEG_BITS) [__linux__]: Define for GCC
Gerd Moellmann <gerd@gnu.org>
parents:
30011
diff
changeset
|
113 #endif |
39341
3c7fb43900bd
(DATA_SEG_BITS): Also define for GCC 3.
Gerd Moellmann <gerd@gnu.org>
parents:
39311
diff
changeset
|
114 #endif |
39492
11c635084cb7
Put in #if 0 until we know what's
Gerd Moellmann <gerd@gnu.org>
parents:
39341
diff
changeset
|
115 #endif /* 0 */ |