* config/obj-coff.h (TC_SPARC): Don't define TARGET_FORMAT.
[deliverable/binutils-gdb.git] / gas / config / vms-conf.h
1 /* vms-conf.h. Generated manually from conf.in,
2 and used by config-gas.com when constructing config.h. */
3
4 /* Define if using alloca.c. */
5 #ifdef __GNUC__
6 #undef C_ALLOCA
7 #else
8 #define C_ALLOCA
9 #endif
10
11 /* Define to one of _getb67, GETB67, getb67 for Cray-2 and Cray-YMP systems.
12 This function is required for alloca.c support on those systems. */
13 #undef CRAY_STACKSEG_END
14
15 /* Define if you have alloca, as a function or macro. */
16 #undef HAVE_ALLOCA
17
18 /* Define if you have <alloca.h> and it should be used (not on Ultrix). */
19 #undef HAVE_ALLOCA_H
20
21 /* Define as __inline if that's what the C compiler calls it. */
22 #ifdef __GNUC__
23 #undef inline
24 #else
25 #define inline
26 #endif
27
28 /* If using the C implementation of alloca, define if you know the
29 direction of stack growth for your system; otherwise it will be
30 automatically deduced at run-time.
31 STACK_DIRECTION > 0 => grows toward higher addresses
32 STACK_DIRECTION < 0 => grows toward lower addresses
33 STACK_DIRECTION = 0 => direction of growth unknown
34 */
35 #define STACK_DIRECTION (-1)
36
37 /* Should gas use high-level BFD interfaces? */
38 #undef BFD_ASSEMBLER
39
40 /* Some assert/preprocessor combinations are incapable of handling
41 certain kinds of constructs in the argument of assert. For example,
42 quoted strings (if requoting isn't done right) or newlines. */
43 #ifdef __GNUC__
44 #undef BROKEN_ASSERT
45 #else
46 #define BROKEN_ASSERT
47 #endif
48
49 /* If we aren't doing cross-assembling, some operations can be optimized,
50 since byte orders and value sizes don't need to be adjusted. */
51 #undef CROSS_COMPILE
52
53 /* Some gas code wants to know these parameters. */
54 #define TARGET_ALIAS "vms"
55 #define TARGET_CPU "vax"
56 #define TARGET_CANONICAL "vax-dec-vms"
57 #define TARGET_OS "vms"
58 #define TARGET_VENDOR "dec"
59
60 /* Sometimes the system header files don't declare malloc and realloc. */
61 #undef NEED_DECLARATION_MALLOC
62
63 /* Sometimes the system header files don't declare free. */
64 #undef NEED_DECLARATION_FREE
65
66 /* Sometimes errno.h doesn't declare errno itself. */
67 #undef NEED_DECLARATION_ERRNO
68
69 #undef MANY_SEGMENTS
70
71 /* Needed only for some configurations that can produce multiple output
72 formats. */
73 #undef DEFAULT_EMULATION
74 #undef EMULATIONS
75 #undef USE_EMULATIONS
76 #undef OBJ_MAYBE_AOUT
77 #undef OBJ_MAYBE_BOUT
78 #undef OBJ_MAYBE_COFF
79 #undef OBJ_MAYBE_ECOFF
80 #undef OBJ_MAYBE_ELF
81 #undef OBJ_MAYBE_GENERIC
82 #undef OBJ_MAYBE_HP300
83 #undef OBJ_MAYBE_IEEE
84 #undef OBJ_MAYBE_SOM
85 #undef OBJ_MAYBE_VMS
86
87 /* Used for some of the COFF configurations, when the COFF code needs
88 to select something based on the CPU type before it knows it... */
89 #undef I386COFF
90 #undef M68KCOFF
91 #undef M88KCOFF
92
93 /* Define if you have the remove function. */
94 #define HAVE_REMOVE
95
96 /* sbrk() is available, but we don't want gas to use it. */
97 #undef HAVE_SBRK
98
99 /* Define if you have the unlink function. */
100 #undef HAVE_UNLINK
101
102 /* Define if you have the <errno.h> header file. */
103 #define HAVE_ERRNO_H
104
105 /* Define if you have the <memory.h> header file. */
106 #undef HAVE_MEMORY_H
107
108 /* Define if you have the <stdarg.h> header file. */
109 #define HAVE_STDARG_H
110
111 /* Define if you have the <stdlib.h> header file. */
112 #define HAVE_STDLIB_H
113
114 /* Define if you have the <string.h> header file. */
115 #define HAVE_STRING_H
116
117 /* Define if you have the <strings.h> header file. */
118 #undef HAVE_STRINGS_H
119
120 /* Define if you have the <sys/types.h> header file. */
121 #ifdef __GNUC__
122 #define HAVE_SYS_TYPES_H
123 #else
124 #undef HAVE_SYS_TYPES_H
125 #endif
126
127 /* Define if you have the <unistd.h> header file. */
128 #define HAVE_UNISTD_H /* config-gas.com will make one if necessary */
129
130 /* Define if you have the <varargs.h> header file. */
131 #undef HAVE_VARARGS_H
132
133 /* VMS-specific: we need to set up EXIT_xxx here because the default
134 values in as.h are inappropriate for VMS, but we also want to prevent
135 as.h's inclusion of <stdlib.h> from triggering redefinition warnings.
136 <stdlib.h> guards itself against multiple inclusion, so including it
137 here turns as.h's later #include into a no-op. (We can't simply use
138 #ifndef HAVE_STDLIB_H here, because the <stdlib.h> in several older
139 gcc-vms distributions neglects to define these two required macros.) */
140 #ifdef HAVE_STDLIB_H
141 #include <stdlib.h>
142 #undef EXIT_SUCCESS
143 #undef EXIT_FAILURE
144 #endif
145 #define EXIT_SUCCESS 1 /* SS$_NORMAL, STS$K_SUCCESS */
146 #define EXIT_FAILURE 0x10000002 /* (STS$K_ERROR | STS$M_INHIB_MSG) */
This page took 0.031726 seconds and 4 git commands to generate.