XEmacs 21.2.30 "Hygeia".
[chise/xemacs-chise.git.1] / src / m / hp9000s300.h
1 /* machine description file for hp9000 series 200 or 300 on either HPUX or BSD.
2    Copyright (C) 1985, 1994 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
8 the Free Software Foundation; either version 2, 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 XEmacs; 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 /* Synched up with: FSF 19.31. */
22
23 /* The following line tells the configuration script what sort of 
24    operating system this machine is likely to run.
25    USUAL-OPSYS="note"
26
27 NOTE-START
28 HP 9000 series 200 or 300 (-machine=hp9000s300)
29
30   These machines are 68000-series CPUs running HP-UX
31   (a derivative of sysV with some BSD features) or BSD 4.3 ported by Utah.
32
33   If you're running HP-UX, specify `-opsystem=hpux'.
34   If you're running BSD, specify `-opsystem=bsd4-3'.
35 NOTE-END */
36
37 /* Define this symbol if you are running a version of HP-UX
38    which predates version 6.01 */
39
40 /* #define HPUX_5 */
41
42 /* Now define a symbol for the cpu type, if your compiler
43    does not define it automatically.  */
44
45 #ifndef hp9000s300
46 #define hp9000s300
47 #endif
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.  */
52
53 /* #define CANNOT_DUMP */
54
55 /* Define VIRT_ADDR_VARIES if the virtual addresses of
56    pure and impure space as loaded can vary, and even their
57    relative order cannot be relied on.
58
59    Otherwise Emacs assumes that text space precedes data space,
60    numerically.  */
61
62 /* #define VIRT_ADDR_VARIES */
63
64 /* XEmacs: Richard Cognot <cognot@ensg.u-nancy.fr> says we need this for
65    HPUX; but eeide@asylum.cs.utah.edu (Eric Eide) says it loses on BSD. */
66 #ifndef BSD
67 # define UNEXEC "unexhp9k3.o"
68 #endif
69
70 \f
71 /* For University of Utah 4.3bsd implementation on HP300s.
72    The #ifndef __GNUC__ definitions are required for the "standard" cc,
73    a very old, brain-dead version of PCC. */
74
75 #ifdef BSD4_3
76
77 /* Tell crt0.c that this is an ordinary 68020.  */
78 #undef hp9000s300
79 #define m68000
80
81 #define CRT0_DUMMIES            bogus_a6,
82
83 #define HAVE_ALLOCA
84
85 #ifndef __GNUC__
86 #define LIBS_DEBUG              /* don't have -lg that works */
87 #define C_DEBUG_SWITCH          /* don't support -g */
88 #endif
89
90 #undef LOAD_AVE_TYPE
91 #undef LOAD_AVE_CVT
92 #define LOAD_AVE_TYPE long
93 #define LOAD_AVE_CVT(x) ((int) (((double) (x)) / 2048.0 * 100.0))
94
95 #endif /* BSD4_3 */
96 \f
97 #ifndef BSD4_3
98 /* The following definitions are for HPUX only.  */
99
100 /* The symbol in the kernel where the load average is found
101    is named _avenrun on this machine.  */
102
103 #define LDAV_SYMBOL "_avenrun"
104
105 /* Data type of load average, as read out of kmem.  */
106
107 #define LOAD_AVE_TYPE double
108
109 /* Convert that into an integer that is 100 for a load average of 1.0  */
110
111 #define LOAD_AVE_CVT(x) ((int) ((x) * 100.0))
112
113 #ifdef __GNUC__
114 #define HAVE_ALLOCA
115 #endif
116
117 /* This library is needed with -g, on the 200/300 only.  */
118
119 #if !defined(__GNUC__) || defined(__HPUX_ASM__)
120 #define LIBS_DEBUG "/usr/lib/end.o"
121 #endif
122
123 /* Need a TEXT_START.  On the HP9000/s300 that is 0.  */
124 #ifdef __GNUC__
125 #define TEXT_START   0
126 #endif
127
128 /* In older versions of hpux, for unknown reasons, S_IFLNK is defined
129    even though symbolic links do not exist.
130    Make sure our conditionals based on S_IFLNK are not confused.
131
132    Here we assume that stat.h is included before config.h
133    so that we can override it here.
134
135    Version 6 of HP-UX has symbolic links.  */
136
137 #ifdef HPUX_5
138 #undef S_IFLNK
139 #endif
140
141 /* Define C_SWITCH_MACHINE to be +X if you want the s200/300
142  * Emacs to run on both 68010 and 68020 based hp-ux's.
143  *
144  * Define OLD_HP_ASSEMBLER if you have an ancient assembler
145  *
146  * Define HPUX_68010 if you are using the new assembler but
147  * compiling for a s200 (upgraded) or s310.  68010 based
148  * processor without 68881.
149  */
150
151 /* These switches increase the size of some internal C compiler tables.
152    They are required for compiling the X11 interface files. */
153
154 #ifndef HPUX_5
155 #ifndef __GNUC__
156 #define C_SWITCH_MACHINE "-Wc,-Nd4000,-Ns3000"
157 #endif
158 #endif
159
160 /* Define NEED_BSDTTY if you have such. */
161
162 #define NEED_BSDTTY
163
164 #endif /* not BSD4_3 */