amd64: Spell amd64 as AMD64 in macro names.
[libfirm] / win32 / config.h
1 /* WIN32 - version */
2 /* always debug heap support */
3 #include "crtdbg.h"
4
5 /* Define to 1 if you have the <malloc.h> header file. */
6 #define HAVE_MALLOC_H 1
7
8 /* Define to 1 if you have the <inttypes.h> header file. */
9 /* #undef HAVE_INTTYPES_H */
10
11 /* Define to 1 if you have the <jni.h> header file. */
12 /* #undef HAVE_JNI_H */
13
14 /* Define to 1 if you have the <math.h> header file. */
15 #define HAVE_MATH_H 1
16
17 /* Define to 1 if you have the <memory.h> header file. */
18 #define HAVE_MEMORY_H 1
19
20 /* Define to 1 if you have the <obstack.h> header file. */
21 #define HAVE_OBSTACK_H 1
22
23 /* Define to 1 if you have the <stdint.h> header file. */
24 #define HAVE_STDINT_H 1
25
26 /* Define to 1 if you have the <strings.h> header file. */
27 /* #undef HAVE_STRINGS_H */
28
29 /* Define to 1 if you have the <sys/stat.h> header file. */
30 #define HAVE_SYS_STAT_H 1
31
32 /* Define to 1 if you have the <sys/types.h> header file. */
33 #define HAVE_SYS_TYPES_H 1
34
35 /* Define to 1 if you have the <unistd.h> header file. */
36 #define HAVE_UNISTD_H 1
37
38 /* Define to 1 if you have the <io.h> header file. */
39 #define HAVE_IO_H 1
40
41 /* Define to the address where bug reports for this package should be sent. */
42 #define PACKAGE_BUGREPORT "firm@ipd.info.uni-karlsruhe.de"
43
44 /* Define to the full name of this package. */
45 #define PACKAGE_NAME "libFIRM"
46
47 /* Define to the full name and version of this package. */
48 #define PACKAGE_STRING "libFIRM 1.18.1"
49
50 /* Define to the one symbol short name of this package. */
51 #define PACKAGE_TARNAME "libFIRM"
52
53 /* Define to the version of this package. */
54 #define PACKAGE_VERSION "1.18.1"
55
56 /* Define to 1 if you have the ANSI C header files. */
57 #define STDC_HEADERS 1
58
59 #define libfirm_VERSION_MAJOR 1
60 #define libfirm_VERSION_MINOR 18
61 #define libfirm_VERSION_MICRO 1
62
63 /* ---------------snip, snip ---------------------- */
64
65 /* define to enable debugging stuff. */
66 #define DEBUG_libfirm 1
67
68 /* define to 1 to use the ILP solver */
69 /* #undef WITH_ILP */
70
71 /* Define to disable assertion checking.  */
72 /* #undef NDEBUG */
73
74 /* Define to 1 if your processor stores words with the most significant byte
75    first (like Motorola and SPARC, unlike Intel and VAX). */
76 /* #undef WORDS_BIGENDIAN */
77
78 /* Define the right volatile token */
79 /* #undef volatile */
80
81 /* Define the right const token */
82 /* #undef const */
83
84 #ifndef inline
85 #define inline __inline
86 #endif
87
88 /* map some non-POSIX names for Win32 */
89 #define snprintf    _snprintf
90 #define __attribute__(x)
91
92 typedef unsigned __int16 uint16_t;
93 typedef unsigned __int32 uint32_t;
94 typedef __int64 int64_t;