OSDN Git Service

caef05c05d56f9d159dea0d353bf420b6c5b3b3f
[pf3gnuchains/gcc-fork.git] / gcc / config / i386 / bsd386.h
1 /* Configuration for an i386 running BSDI's BSD/OS (formerly known as BSD/386)
2    as the target machine.  */
3
4 #include "i386/386bsd.h"
5
6 /* We exist mostly to add -Dbsdi and such to the predefines. */
7
8 #undef CPP_PREDEFINES
9 #define CPP_PREDEFINES "-Dunix -Dbsdi -D____386BSD____ -D__386BSD__\
10  -DBSD_NET2 -Asystem=unix -Asystem=bsd"
11
12 #undef WCHAR_TYPE
13 #define WCHAR_TYPE "int"
14
15 #undef WCHAR_UNSIGNED
16 #define WCHAR_UNSIGNED 0
17
18 #undef WCHAR_TYPE_SIZE
19 #define WCHAR_TYPE_SIZE 32
20
21 /* This is suitable for BSD/OS 3.0; we don't know about earlier releases.  */
22 #undef ASM_COMMENT_START
23 #define ASM_COMMENT_START " #"
24
25 /* Until they use ELF or something that handles dwarf2 unwinds
26    and initialization stuff better.  */
27 #define DWARF2_UNWIND_INFO 0
28
29 /* BSD/OS still uses old binutils that don't insert nops by default
30    when the .align directive demands to insert extra space in the text
31    segment.  */
32 #undef ASM_OUTPUT_ALIGN
33 #define ASM_OUTPUT_ALIGN(FILE,LOG) \
34   if ((LOG)!=0) fprintf ((FILE), "\t.align %d,0x90\n", (LOG))