annotate src/m/news-risc.h @ 321:19dcec799385 r21-0-58

Import from CVS: tag r21-0-58
author cvs
date Mon, 13 Aug 2007 10:46:44 +0200
parents c5d627a313b1
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Synched up with: FSF 19.31. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 /* news-risc.h is for the "RISC News". */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 #include "mips.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 #ifdef NEWSOS5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 /* NEWS-OS 5.0.2 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
11 #undef LIBS_MACHINE
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 #ifdef __GNUC__
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 0
diff changeset
14 #define C_DEBUG_SWITCH "-g"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 0
diff changeset
15 #define C_OPTIMIZE_SWITCH "-g -O"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 0
diff changeset
16 #define LD_SWITCH_MACHINE "-g -Xlinker -D -Xlinker 800000"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 #else
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 0
diff changeset
18 #define C_DEBUG_SWITCH "-g3"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 0
diff changeset
19 #define C_OPTIMIZE_SWITCH "-g3"
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 0
diff changeset
20 #define LD_SWITCH_MACHINE "-g3 -D 800000 -non_shared"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 #else /* not NEWSOS5 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 /* The following line tells the configuration script what sort of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 operating system this machine is likely to run.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 USUAL-OPSYS="bsd4-3" */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #define COFF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #undef LD_SWITCH_MACHINE
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 0
diff changeset
31 #define LD_SWITCH_MACHINE "-x -D 800000"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 /* #define C_OPTIMIZE_SWITCH -O2 */
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 0
diff changeset
34 #define C_OPTIMIZE_SWITCH "-O"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #ifndef __GNUC__
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 0
diff changeset
37 #define C_DEBUG_SWITCH "-g3"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 #undef TERMINFO
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 /* We have no mode_t. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 #define NO_MODE_T
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 /* Don't use the definitions in m/mips.h. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 #undef LINKER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 #undef LIBS_MACHINE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 #undef KERNEL_FILE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 #define KERNEL_FILE "/vmunix"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 #endif /* not NEWSOS5 */