X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=win32%2Fconfig.h;h=082e5301f08e82ea6d20dfd91e7cfa27c3caf4b1;hb=53b76abebcd071c7c25a7c17b5d0cdcb7772cb64;hp=abe90710adf11ab4f6c3fda0362599c56aa92746;hpb=df327b05c5773ec9839d28fab562f8dc228560c6;p=libfirm diff --git a/win32/config.h b/win32/config.h index abe90710a..082e5301f 100644 --- a/win32/config.h +++ b/win32/config.h @@ -12,15 +12,6 @@ * Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE. */ -/* define to enable debugging stuff. */ -#define DEBUG_libfirm 1 - -/* Define to disable assertion checking. */ -/* #undef NDEBUG */ - -/* Define to value "inline" for gcc inlineing. */ -/* #undef USE_GCC_INLINE */ - /* Define to 1 if you have the header file. */ /* #undef HAVE_ALLOCA_H */ @@ -33,10 +24,6 @@ /* Define to 1 if you have the header file. */ /* #undef HAVE_JNI_H */ -/* Define to 1 if long double works and has more range or precision than - double. */ -/* #undef HAVE_LONG_DOUBLE */ - /* Define to 1 if you have the header file. */ #define HAVE_MATH_H 1 @@ -67,17 +54,20 @@ /* Define to 1 if you have the header file. */ #define HAVE_UNISTD_H 1 +/* Define to 1 if you have the header file. */ +#define HAVE_IO_H 1 + /* Define to the address where bug reports for this package should be sent. */ #define PACKAGE_BUGREPORT "" /* Define to the full name of this package. */ -#define PACKAGE_NAME "libfirm" +#define PACKAGE_NAME "libFIRM" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "libfirm 0.3.0" +#define PACKAGE_STRING "libFIRM 0.3.0" /* Define to the one symbol short name of this package. */ -#define PACKAGE_TARNAME "libfirm" +#define PACKAGE_TARNAME "libFIRM" /* Define to the version of this package. */ #define PACKAGE_VERSION "0.3.0" @@ -85,14 +75,55 @@ /* Define to 1 if you have the ANSI C header files. */ #define STDC_HEADERS 1 +/* ---------------snip, snip ---------------------- */ + +/* define to enable debugging stuff. */ +#define DEBUG_libfirm 1 + +/* define to 1 to use the libcore */ +#define WITH_LIBCORE 1 + +/* define to 1 to use the ILP solver */ +#undef WITH_ILP + +/* define to 1 to have wchar_t support for identifiers */ +#define FIRM_ENABLE_WCHAR 1 + +/* Define to disable assertion checking. */ +/* #undef NDEBUG */ + +/* Remove to disable inlining */ +#define USE_INLINING 1 + +/* Define to 1 if long double works and has more range or precision than + double. */ +/* #undef HAVE_LONG_DOUBLE */ + /* Define to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel and VAX). */ /* #undef WORDS_BIGENDIAN */ -/* inline */ +/* Define to 1 if Firm statistics are activated */ +#define FIRM_STATISTICS 1 + +/* Define to 1 if Firm hooks are activated */ +#define FIRM_ENABLE_HOOKS 1 + +/* Define the right volatile token */ +/* #undef volatile */ + +/* Define the right const token */ +/* #undef const */ + +#ifdef USE_INLINING +#define INLINE __inline +#else #define INLINE +#endif +/* map some non-POSIX names for Win32 */ #define snprintf _snprintf #define strcasecmp stricmp typedef unsigned __int32 uint32_t; +typedef __int64 int64_t;