we don't need no stinking selfs
[libfirm] / firm_config.h.in
1 /* Define to 1 for heap analysis support */
2 @FIRMCONFIG_DO_HEAPANALYSIS@
3
4 /* define to 1 to enable debugging stuff. */
5 @FIRMCONFIG_DEBUG_libfirm@
6
7 /* define to 1 to use the ILP solver */
8 @FIRMCONFIG_WITH_ILP@
9
10 /* define to 1 to enable Firm to call the JVM */
11 @FIRMCONFIG_WITH_JVM@
12
13 /* define to 1 to have wchar_t support for identifiers */
14 @FIRMCONFIG_FIRM_ENABLE_WCHAR@
15
16 /* undef to disable inlining */
17 @FIRMCONFIG_USE_INLINING@
18
19 /* define to enable hooks */
20 @FIRMCONFIG_FIRM_ENABLE_HOOKS@
21
22 #ifdef USE_INLINING
23 #define INLINE inline
24 #else
25 #define INLINE
26 #endif
27
28 /* Firm statistics need hooks */
29 #ifdef FIRM_STATISTICS
30 #ifndef FIRM_ENABLE_HOOKS
31 #define FIRM_ENABLE_HOOKS
32 #endif
33 #endif