Fix for PR39557
[official-gcc.git] / libffi / fficonfig.h.in
blob90c8990eb1968b34dc7bf60c717511c5af6d5f4b
1 /* fficonfig.h.in. Generated from configure.ac by autoheader. */
3 /* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
4 systems. This function is required for `alloca.c' support on those systems.
5 */
6 #undef CRAY_STACKSEG_END
8 /* Define to 1 if using `alloca.c'. */
9 #undef C_ALLOCA
11 /* Define to the flags needed for the .section .eh_frame directive. */
12 #undef EH_FRAME_FLAGS
14 /* Define this if you want extra debugging. */
15 #undef FFI_DEBUG
17 /* Define this is you do not want support for the raw API. */
18 #undef FFI_NO_RAW_API
20 /* Define this is you do not want support for aggregate types. */
21 #undef FFI_NO_STRUCTS
23 /* Define to 1 if you have `alloca', as a function or macro. */
24 #undef HAVE_ALLOCA
26 /* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
28 #undef HAVE_ALLOCA_H
30 /* Define if your assembler supports .cfi_* directives. */
31 #undef HAVE_AS_CFI_PSEUDO_OP
33 /* Define if your assembler supports .register. */
34 #undef HAVE_AS_REGISTER_PSEUDO_OP
36 /* Define if your assembler and linker support unaligned PC relative relocs.
38 #undef HAVE_AS_SPARC_UA_PCREL
40 /* Define if your assembler supports PC relative relocs. */
41 #undef HAVE_AS_X86_PCREL
43 /* Define to 1 if you have the <dlfcn.h> header file. */
44 #undef HAVE_DLFCN_H
46 /* Define if __attribute__((visibility("hidden"))) is supported. */
47 #undef HAVE_HIDDEN_VISIBILITY_ATTRIBUTE
49 /* Define to 1 if you have the <inttypes.h> header file. */
50 #undef HAVE_INTTYPES_H
52 /* Define if you have the long double type and it is bigger than a double */
53 #undef HAVE_LONG_DOUBLE
55 /* Define to 1 if you have the `memcpy' function. */
56 #undef HAVE_MEMCPY
58 /* Define to 1 if you have the <memory.h> header file. */
59 #undef HAVE_MEMORY_H
61 /* Define to 1 if you have the `mmap' function. */
62 #undef HAVE_MMAP
64 /* Define if mmap with MAP_ANON(YMOUS) works. */
65 #undef HAVE_MMAP_ANON
67 /* Define if mmap of /dev/zero works. */
68 #undef HAVE_MMAP_DEV_ZERO
70 /* Define if read-only mmap of a plain file works. */
71 #undef HAVE_MMAP_FILE
73 /* Define if .eh_frame sections should be read-only. */
74 #undef HAVE_RO_EH_FRAME
76 /* Define to 1 if you have the <stdint.h> header file. */
77 #undef HAVE_STDINT_H
79 /* Define to 1 if you have the <stdlib.h> header file. */
80 #undef HAVE_STDLIB_H
82 /* Define to 1 if you have the <strings.h> header file. */
83 #undef HAVE_STRINGS_H
85 /* Define to 1 if you have the <string.h> header file. */
86 #undef HAVE_STRING_H
88 /* Define to 1 if you have the <sys/mman.h> header file. */
89 #undef HAVE_SYS_MMAN_H
91 /* Define to 1 if you have the <sys/stat.h> header file. */
92 #undef HAVE_SYS_STAT_H
94 /* Define to 1 if you have the <sys/types.h> header file. */
95 #undef HAVE_SYS_TYPES_H
97 /* Define to 1 if you have the <unistd.h> header file. */
98 #undef HAVE_UNISTD_H
100 /* Define to the sub-directory in which libtool stores uninstalled libraries.
102 #undef LT_OBJDIR
104 /* Define to 1 if your C compiler doesn't accept -c and -o together. */
105 #undef NO_MINUS_C_MINUS_O
107 /* Name of package */
108 #undef PACKAGE
110 /* Define to the address where bug reports for this package should be sent. */
111 #undef PACKAGE_BUGREPORT
113 /* Define to the full name of this package. */
114 #undef PACKAGE_NAME
116 /* Define to the full name and version of this package. */
117 #undef PACKAGE_STRING
119 /* Define to the one symbol short name of this package. */
120 #undef PACKAGE_TARNAME
122 /* Define to the version of this package. */
123 #undef PACKAGE_VERSION
125 /* The size of a `double', as computed by sizeof. */
126 #undef SIZEOF_DOUBLE
128 /* The size of a `long double', as computed by sizeof. */
129 #undef SIZEOF_LONG_DOUBLE
131 /* If using the C implementation of alloca, define if you know the
132 direction of stack growth for your system; otherwise it will be
133 automatically deduced at run-time.
134 STACK_DIRECTION > 0 => grows toward higher addresses
135 STACK_DIRECTION < 0 => grows toward lower addresses
136 STACK_DIRECTION = 0 => direction of growth unknown */
137 #undef STACK_DIRECTION
139 /* Define to 1 if you have the ANSI C header files. */
140 #undef STDC_HEADERS
142 /* Define this if you are using Purify and want to suppress spurious messages.
144 #undef USING_PURIFY
146 /* Version number of package */
147 #undef VERSION
149 /* Define to 1 if your processor stores words with the most significant byte
150 first (like Motorola and SPARC, unlike Intel and VAX). */
151 #undef WORDS_BIGENDIAN
154 #ifdef HAVE_HIDDEN_VISIBILITY_ATTRIBUTE
155 #ifdef LIBFFI_ASM
156 #define FFI_HIDDEN(name) .hidden name
157 #else
158 #define FFI_HIDDEN __attribute__ ((visibility ("hidden")))
159 #endif
160 #else
161 #ifdef LIBFFI_ASM
162 #define FFI_HIDDEN(name)
163 #else
164 #define FFI_HIDDEN
165 #endif
166 #endif