Mercurial > emacs
annotate src/m/ibmrs6000.h @ 13856:8046a1616264
(hide-ifdefs): Set hif-outside-read-only here.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 25 Dec 1995 21:03:10 +0000 |
parents | 53ea087693a0 |
children | ee40177f6c68 |
rev | line source |
---|---|
446 | 1 /* R2 AIX machine/system dependent defines |
2 Copyright (C) 1988 Free Software Foundation, Inc. | |
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 | |
3699 | 8 the Free Software Foundation; either version 2, or (at your option) |
446 | 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, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 | |
21 /* The following line tells the configuration script what sort of | |
22 operating system this machine is likely to run. | |
23 USUAL-OPSYS="aix3-1" */ | |
24 | |
9095
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
25 /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word |
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
26 is the most significant byte. */ |
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
27 |
13097
59916c4b0b79
Add early support for Solaris 2.5 on PowerPCs.
Richard M. Stallman <rms@gnu.org>
parents:
12636
diff
changeset
|
28 #ifdef USG5_4 |
59916c4b0b79
Add early support for Solaris 2.5 on PowerPCs.
Richard M. Stallman <rms@gnu.org>
parents:
12636
diff
changeset
|
29 #undef WORDS_BIG_ENDIAN |
59916c4b0b79
Add early support for Solaris 2.5 on PowerPCs.
Richard M. Stallman <rms@gnu.org>
parents:
12636
diff
changeset
|
30 #else |
9095
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
31 #define WORDS_BIG_ENDIAN |
13097
59916c4b0b79
Add early support for Solaris 2.5 on PowerPCs.
Richard M. Stallman <rms@gnu.org>
parents:
12636
diff
changeset
|
32 #endif |
9095
23f72b18b420
(WORDS_BIG_ENDIAN): define or undef appropriately, superseding BIG_ENDIAN.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
33 |
446 | 34 /* Define NO_ARG_ARRAY if you cannot take the address of the first of a |
35 * group of arguments and treat it as an array of the arguments. */ | |
36 | |
37 #define NO_ARG_ARRAY | |
38 | |
39 /* Now define a symbol for the cpu type, if your compiler | |
40 does not define it automatically. */ | |
41 | |
42 #define IBMR2AIX | |
43 | |
44 /* Use type int rather than a union, to represent Lisp_Object */ | |
45 /* This is desirable for most machines. */ | |
46 | |
47 #define NO_UNION_TYPE | |
48 | |
49 /* Define CANNOT_DUMP on machines where unexec does not work. | |
50 Then the function dump-emacs will not be defined | |
51 and temacs will do (load "loadup") automatically unless told otherwise. */ | |
13097
59916c4b0b79
Add early support for Solaris 2.5 on PowerPCs.
Richard M. Stallman <rms@gnu.org>
parents:
12636
diff
changeset
|
52 #ifdef USG5_4 |
59916c4b0b79
Add early support for Solaris 2.5 on PowerPCs.
Richard M. Stallman <rms@gnu.org>
parents:
12636
diff
changeset
|
53 #define CANNOT_DUMP |
59916c4b0b79
Add early support for Solaris 2.5 on PowerPCs.
Richard M. Stallman <rms@gnu.org>
parents:
12636
diff
changeset
|
54 #endif |
446 | 55 |
13097
59916c4b0b79
Add early support for Solaris 2.5 on PowerPCs.
Richard M. Stallman <rms@gnu.org>
parents:
12636
diff
changeset
|
56 #ifndef UNEXEC |
446 | 57 #define UNEXEC unexaix.o |
13097
59916c4b0b79
Add early support for Solaris 2.5 on PowerPCs.
Richard M. Stallman <rms@gnu.org>
parents:
12636
diff
changeset
|
58 #endif |
446 | 59 |
60 /* Define addresses, macros, change some setup for dump */ | |
61 | |
62 #define NO_REMAP | |
63 | |
13097
59916c4b0b79
Add early support for Solaris 2.5 on PowerPCs.
Richard M. Stallman <rms@gnu.org>
parents:
12636
diff
changeset
|
64 #ifndef USG5_4 |
446 | 65 #define TEXT_START 0x10000000 |
66 #define TEXT_END 0 | |
67 #define DATA_START 0x20000000 | |
68 #define DATA_END 0 | |
13097
59916c4b0b79
Add early support for Solaris 2.5 on PowerPCs.
Richard M. Stallman <rms@gnu.org>
parents:
12636
diff
changeset
|
69 #endif |
446 | 70 |
71 /* The data segment in this machine always starts at address 0x20000000. | |
72 An address of data cannot be stored correctly in a Lisp object; | |
73 we always lose the high bits. We must tell XPNTR to add them back. */ | |
74 | |
13097
59916c4b0b79
Add early support for Solaris 2.5 on PowerPCs.
Richard M. Stallman <rms@gnu.org>
parents:
12636
diff
changeset
|
75 #ifndef USG5_4 |
446 | 76 #define DATA_SEG_BITS 0x20000000 |
13097
59916c4b0b79
Add early support for Solaris 2.5 on PowerPCs.
Richard M. Stallman <rms@gnu.org>
parents:
12636
diff
changeset
|
77 #else |
59916c4b0b79
Add early support for Solaris 2.5 on PowerPCs.
Richard M. Stallman <rms@gnu.org>
parents:
12636
diff
changeset
|
78 #define DATA_SEG_BITS 0 |
59916c4b0b79
Add early support for Solaris 2.5 on PowerPCs.
Richard M. Stallman <rms@gnu.org>
parents:
12636
diff
changeset
|
79 #endif |
446 | 80 |
81 #ifdef CANNOT_DUMP | |
82 /* Define shared memory segment symbols */ | |
83 | |
84 #define PURE_SEG_BITS 0x30000000 | |
85 | |
86 /* Use shared memory. */ | |
87 /* This is turned off because it does not always work. See etc/AIX.DUMP. */ | |
88 /* #define HAVE_SHM */ | |
89 #define SHMKEY 5305035 /* used for shared memory code segments */ | |
90 #endif /* CANNOT_DUMP */ | |
91 | |
92 #define N_BADMAG(x) BADMAG(x) | |
93 #define N_TXTOFF(x) A_TEXTPOS(x) | |
94 #define N_SYMOFF(x) A_SYMPOS(x) | |
95 #define A_TEXT_OFFSET(HDR) sizeof(HDR) | |
96 /* #define ADJUST_EXEC_HEADER \ | |
97 unexec_text_start += sizeof(hdr); \ | |
98 unexec_data_start = ohdr.a_dbase | |
99 */ | |
100 #undef ADDR_CORRECT | |
101 #define ADDR_CORRECT(x) ((int)(x)) | |
102 | |
103 /* Define C_ALLOCA if this machine does not support a true alloca | |
104 and the one written in C should be used instead. | |
105 Define HAVE_ALLOCA to say that the system provides a properly | |
106 working alloca function and it should be used. | |
107 Define neither one if an assembler-language alloca | |
108 in the file alloca.s should be used. */ | |
109 | |
1906
158faf65239b
* ibmrs6000.h (C_ALLOCA, STACK_DIRECTION): Only define if HAVE_ALLOCA
Jim Blandy <jimb@redhat.com>
parents:
750
diff
changeset
|
110 /* Note: aix3-2.h defines HAVE_ALLOCA; aix3-1.h doesn't. */ |
158faf65239b
* ibmrs6000.h (C_ALLOCA, STACK_DIRECTION): Only define if HAVE_ALLOCA
Jim Blandy <jimb@redhat.com>
parents:
750
diff
changeset
|
111 #ifndef HAVE_ALLOCA |
446 | 112 #define C_ALLOCA |
113 #define STACK_DIRECTION -1 /* tell alloca.c which way it grows */ | |
1906
158faf65239b
* ibmrs6000.h (C_ALLOCA, STACK_DIRECTION): Only define if HAVE_ALLOCA
Jim Blandy <jimb@redhat.com>
parents:
750
diff
changeset
|
114 #endif |
446 | 115 |
1906
158faf65239b
* ibmrs6000.h (C_ALLOCA, STACK_DIRECTION): Only define if HAVE_ALLOCA
Jim Blandy <jimb@redhat.com>
parents:
750
diff
changeset
|
116 /* Specify the font for X to use. |
158faf65239b
* ibmrs6000.h (C_ALLOCA, STACK_DIRECTION): Only define if HAVE_ALLOCA
Jim Blandy <jimb@redhat.com>
parents:
750
diff
changeset
|
117 This used to be Rom14.500; that's nice on the X server shipped with |
158faf65239b
* ibmrs6000.h (C_ALLOCA, STACK_DIRECTION): Only define if HAVE_ALLOCA
Jim Blandy <jimb@redhat.com>
parents:
750
diff
changeset
|
118 the RS/6000, but it's not available on other servers. */ |
158faf65239b
* ibmrs6000.h (C_ALLOCA, STACK_DIRECTION): Only define if HAVE_ALLOCA
Jim Blandy <jimb@redhat.com>
parents:
750
diff
changeset
|
119 #define X_DEFAULT_FONT "fixed" |
446 | 120 |
121 /* Here override various assumptions in ymakefile */ | |
122 | |
10051
0c96366e10d2
(OBJECTS_MACHINE): Define only if AIXHFT.
Richard M. Stallman <rms@gnu.org>
parents:
9095
diff
changeset
|
123 #ifdef AIXHFT |
446 | 124 #define OBJECTS_MACHINE hftctl.o |
10051
0c96366e10d2
(OBJECTS_MACHINE): Define only if AIXHFT.
Richard M. Stallman <rms@gnu.org>
parents:
9095
diff
changeset
|
125 #endif |
0c96366e10d2
(OBJECTS_MACHINE): Define only if AIXHFT.
Richard M. Stallman <rms@gnu.org>
parents:
9095
diff
changeset
|
126 |
13097
59916c4b0b79
Add early support for Solaris 2.5 on PowerPCs.
Richard M. Stallman <rms@gnu.org>
parents:
12636
diff
changeset
|
127 #ifndef USG5_4 |
446 | 128 #define C_SWITCH_MACHINE -D_BSD |
13097
59916c4b0b79
Add early support for Solaris 2.5 on PowerPCs.
Richard M. Stallman <rms@gnu.org>
parents:
12636
diff
changeset
|
129 #endif |
4709
c3caa44eff82
(LIBS_MACHINE): Include -lrts, -liconv only if AIX3_2.
Richard M. Stallman <rms@gnu.org>
parents:
4581
diff
changeset
|
130 |
c3caa44eff82
(LIBS_MACHINE): Include -lrts, -liconv only if AIX3_2.
Richard M. Stallman <rms@gnu.org>
parents:
4581
diff
changeset
|
131 #ifdef AIX3_2 |
12207
a2c1cc17593f
(LIBS_MACHINE): Use -lpthreads, not -lpthread.
Karl Heuer <kwzh@gnu.org>
parents:
12194
diff
changeset
|
132 /* -lpthreads seems to be necessary for Xlib in X11R6, and should be harmless |
12194 | 133 on older versions of X where it happens to exist. */ |
12207
a2c1cc17593f
(LIBS_MACHINE): Use -lpthreads, not -lpthread.
Karl Heuer <kwzh@gnu.org>
parents:
12194
diff
changeset
|
134 #ifdef HAVE_LIBPTHREADS |
a2c1cc17593f
(LIBS_MACHINE): Use -lpthreads, not -lpthread.
Karl Heuer <kwzh@gnu.org>
parents:
12194
diff
changeset
|
135 #define LIBS_MACHINE -lrts -lIM -liconv -lpthreads |
12158
bad47702c3b1
(LIBS_MACHINE): Use -lpthread if it exists.
Karl Heuer <kwzh@gnu.org>
parents:
10051
diff
changeset
|
136 #else |
3314
a472a3956b2a
* s/aix3-2.h (LIBS_SYSTEM): Remove -lIM and -liconv from here...
Jim Blandy <jimb@redhat.com>
parents:
3107
diff
changeset
|
137 /* IBM's X11R5 use -lIM and -liconv in AIX 3.2.2. */ |
3107
6c0cce3bc5d5
(LIBS_MACHINE): Add -lIM and -liconv.
Richard M. Stallman <rms@gnu.org>
parents:
2641
diff
changeset
|
138 #define LIBS_MACHINE -lrts -lIM -liconv |
12158
bad47702c3b1
(LIBS_MACHINE): Use -lpthread if it exists.
Karl Heuer <kwzh@gnu.org>
parents:
10051
diff
changeset
|
139 #endif |
4709
c3caa44eff82
(LIBS_MACHINE): Include -lrts, -liconv only if AIX3_2.
Richard M. Stallman <rms@gnu.org>
parents:
4581
diff
changeset
|
140 #else |
13097
59916c4b0b79
Add early support for Solaris 2.5 on PowerPCs.
Richard M. Stallman <rms@gnu.org>
parents:
12636
diff
changeset
|
141 #ifdef USG5_4 |
59916c4b0b79
Add early support for Solaris 2.5 on PowerPCs.
Richard M. Stallman <rms@gnu.org>
parents:
12636
diff
changeset
|
142 #define LIBS_MACHINE |
59916c4b0b79
Add early support for Solaris 2.5 on PowerPCs.
Richard M. Stallman <rms@gnu.org>
parents:
12636
diff
changeset
|
143 #else |
4709
c3caa44eff82
(LIBS_MACHINE): Include -lrts, -liconv only if AIX3_2.
Richard M. Stallman <rms@gnu.org>
parents:
4581
diff
changeset
|
144 #define LIBS_MACHINE -lIM |
c3caa44eff82
(LIBS_MACHINE): Include -lrts, -liconv only if AIX3_2.
Richard M. Stallman <rms@gnu.org>
parents:
4581
diff
changeset
|
145 #endif |
13097
59916c4b0b79
Add early support for Solaris 2.5 on PowerPCs.
Richard M. Stallman <rms@gnu.org>
parents:
12636
diff
changeset
|
146 #endif |
4709
c3caa44eff82
(LIBS_MACHINE): Include -lrts, -liconv only if AIX3_2.
Richard M. Stallman <rms@gnu.org>
parents:
4581
diff
changeset
|
147 |
446 | 148 #define START_FILES |
149 #define HAVE_SYSVIPC | |
150 #define HAVE_GETWD | |
151 /*** BUILD 9008 - FIONREAD problem still exists in X-Windows. ***/ | |
152 #define BROKEN_FIONREAD | |
153 | |
154 /* Don't try to include sioctl.h or ptem.h. */ | |
155 #undef NEED_SIOCTL | |
156 #undef NEED_PTEM_H | |
157 | |
3368
cb9e597ce94f
Delete ! __GNUC__ conditional.
Richard M. Stallman <rms@gnu.org>
parents:
3358
diff
changeset
|
158 #define ORDINARY_LINK |
13097
59916c4b0b79
Add early support for Solaris 2.5 on PowerPCs.
Richard M. Stallman <rms@gnu.org>
parents:
12636
diff
changeset
|
159 |
59916c4b0b79
Add early support for Solaris 2.5 on PowerPCs.
Richard M. Stallman <rms@gnu.org>
parents:
12636
diff
changeset
|
160 #ifndef USG5_4 |
13735
53ea087693a0
(LD_SWITCH_MACHINE): Don't define if using GCC.
Richard M. Stallman <rms@gnu.org>
parents:
13374
diff
changeset
|
161 #ifndef __GNUC__ |
4177 | 162 /* sfreed@unm.edu says add -bI:/usr/lpp/X11/bin/smt.exp for AIX 3.2.4. */ |
8579
c93c9e087810
(LD_SWITCH_MACHINE): Supply m/ibmrs6000.inp as input.
Richard M. Stallman <rms@gnu.org>
parents:
5919
diff
changeset
|
163 /* marc@sti.com (Marc Pawliger) says ibmrs6000.inp is needed to avoid |
8588 | 164 linker error for updated X11R5 libraries, which references pthread library |
8579
c93c9e087810
(LD_SWITCH_MACHINE): Supply m/ibmrs6000.inp as input.
Richard M. Stallman <rms@gnu.org>
parents:
5919
diff
changeset
|
165 which most machines don't have. We use the name .inp instead of .imp |
c93c9e087810
(LD_SWITCH_MACHINE): Supply m/ibmrs6000.inp as input.
Richard M. Stallman <rms@gnu.org>
parents:
5919
diff
changeset
|
166 because .inp is a better convention to use in make-dist for naming |
c93c9e087810
(LD_SWITCH_MACHINE): Supply m/ibmrs6000.inp as input.
Richard M. Stallman <rms@gnu.org>
parents:
5919
diff
changeset
|
167 random input files. */ |
12636
97ce4bb9a235
(LD_SWITCH_MACHINE) [AIX4]: New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
12207
diff
changeset
|
168 #ifdef AIX4 |
97ce4bb9a235
(LD_SWITCH_MACHINE) [AIX4]: New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
12207
diff
changeset
|
169 #define LD_SWITCH_MACHINE -Wl,-bnodelcsect |
97ce4bb9a235
(LD_SWITCH_MACHINE) [AIX4]: New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
12207
diff
changeset
|
170 #else /* not AIX4 */ |
4369
2497c88c03c3
* config.h.in (HAVE_AIX_SMT_EXP): New #undef for configure to edit.
Jim Blandy <jimb@redhat.com>
parents:
4177
diff
changeset
|
171 #ifdef HAVE_AIX_SMT_EXP |
8582
9f0d8d29d122
(LD_SWITCH_MACHINE): Use full path to ibmrs6000.inp.
Karl Heuer <kwzh@gnu.org>
parents:
8579
diff
changeset
|
172 #define LD_SWITCH_MACHINE -Wl,-bnso,-bnodelcsect,-bI:/lib/syscalls.exp,-bI:$(srcdir)/m/ibmrs6000.inp,-bI:/usr/lpp/X11/bin/smt.exp |
4369
2497c88c03c3
* config.h.in (HAVE_AIX_SMT_EXP): New #undef for configure to edit.
Jim Blandy <jimb@redhat.com>
parents:
4177
diff
changeset
|
173 #else |
8582
9f0d8d29d122
(LD_SWITCH_MACHINE): Use full path to ibmrs6000.inp.
Karl Heuer <kwzh@gnu.org>
parents:
8579
diff
changeset
|
174 #define LD_SWITCH_MACHINE -Wl,-bnso,-bnodelcsect,-bI:/lib/syscalls.exp,-bI:$(srcdir)/m/ibmrs6000.inp |
4369
2497c88c03c3
* config.h.in (HAVE_AIX_SMT_EXP): New #undef for configure to edit.
Jim Blandy <jimb@redhat.com>
parents:
4177
diff
changeset
|
175 #endif |
12636
97ce4bb9a235
(LD_SWITCH_MACHINE) [AIX4]: New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
12207
diff
changeset
|
176 #endif /* not AIX4 */ |
13735
53ea087693a0
(LD_SWITCH_MACHINE): Don't define if using GCC.
Richard M. Stallman <rms@gnu.org>
parents:
13374
diff
changeset
|
177 #endif /* not __GNUC__ */ |
3372
41adfe8856d6
(NLIST_STRUCT): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
3368
diff
changeset
|
178 |
8582
9f0d8d29d122
(LD_SWITCH_MACHINE): Use full path to ibmrs6000.inp.
Karl Heuer <kwzh@gnu.org>
parents:
8579
diff
changeset
|
179 /* AIX supposedly doesn't use this interface, but on the RS/6000 |
3372
41adfe8856d6
(NLIST_STRUCT): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
3368
diff
changeset
|
180 it apparently does. */ |
41adfe8856d6
(NLIST_STRUCT): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
3368
diff
changeset
|
181 #define NLIST_STRUCT |
13097
59916c4b0b79
Add early support for Solaris 2.5 on PowerPCs.
Richard M. Stallman <rms@gnu.org>
parents:
12636
diff
changeset
|
182 #endif /* USG5_4 */ |