From 65f2f82caf8ee697b29ac86476da09686aa044d4 Mon Sep 17 00:00:00 2001 From: Sebastian Hack Date: Mon, 31 Jul 2006 09:10:18 +0000 Subject: [PATCH] Added WITH_JVM defines for the Java based coalescer [r8073] --- win32/config.h | 5 ++++- win32/firm_config.h | 9 ++++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/win32/config.h b/win32/config.h index 082e5301f..6f623ffaf 100644 --- a/win32/config.h +++ b/win32/config.h @@ -84,7 +84,10 @@ #define WITH_LIBCORE 1 /* define to 1 to use the ILP solver */ -#undef WITH_ILP +#define WITH_ILP 1 + +/* define to 1 to use JVM calling needed for the Java-based coalescer in firmbe */ +/* #undef WITH_JVM */ /* define to 1 to have wchar_t support for identifiers */ #define FIRM_ENABLE_WCHAR 1 diff --git a/win32/firm_config.h b/win32/firm_config.h index 83afb6ddc..a78078916 100644 --- a/win32/firm_config.h +++ b/win32/firm_config.h @@ -38,7 +38,14 @@ #endif /* define to 1 to use the ILP solver */ -/* #undef WITH_ILP */ +#ifndef WITH_ILP +#define WITH_ILP 1 +#endif + +/* define to 1 to use JVM calling needed for the Java-based coalescer in firmbe */ +#ifndef WITH_JVM +#define WITH_JVM 1 +#endif /* Define to disable assertion checking. */ /* #undef NDEBUG */ -- 2.20.1