added PLUGIN_xxx defines
authorChristian Würdig <chriswue@ipd.info.uni-karlsruhe.de>
Mon, 22 Jan 2007 10:24:10 +0000 (10:24 +0000)
committerChristian Würdig <chriswue@ipd.info.uni-karlsruhe.de>
Mon, 22 Jan 2007 10:24:10 +0000 (10:24 +0000)
[r8545]

win32/config.h
win32/firm_config.h

index 0157f18..7051e43 100644 (file)
@@ -89,9 +89,6 @@
 /* define to 1 to use JVM calling needed for the Java-based coalescer in firmbe */
 #define WITH_JVM 1
 
-/* define to 1 to enable the STA backend */
-/* #undef WITH_STA */
-
 /* define to 1 to have wchar_t support for identifiers */
 #define FIRM_ENABLE_WCHAR 1
 
 
 typedef unsigned __int32 uint32_t;
 typedef __int64 int64_t;
+
+/* enabled plugin: ir/be/ia32 */
+#define PLUGIN_IR_BE_IA32 1
+/* enabled plugin: ir/be/sta */
+#define PLUGIN_IR_BE_STA 0
+/* enabled plugin: ir/be/ppc32 */
+#define PLUGIN_IR_BE_PPC32 1
+/* enabled plugin: ir/be/mips */
+#define PLUGIN_IR_BE_MIPS 1
+/* enabled plugin: ir/be/arm */
+#define PLUGIN_IR_BE_ARM 1
+/* enabled plugin: ir/be/firm */
+#define PLUGIN_IR_BE_FIRM 1
+/* enabled plugin: ir/be */
+#define PLUGIN_IR_BE 1
index a56b4bc..dbee741 100644 (file)
@@ -45,9 +45,6 @@
 /* define to 1 to use JVM calling needed for the Java-based coalescer in firmbe */
 /* #undef WITH_JVM */
 
-/* define to 1 to enable STA backend */
-/* #undef WITH_STA */
-
 /* Define to disable assertion checking.  */
 /* #undef NDEBUG */
 
 #endif
 #endif
 
+/* enabled plugin: ir/be/ia32 */
+#ifndef PLUGIN_IR_BE_IA
+#define PLUGIN_IR_BE_IA 32 1
+#endif
+/* enabled plugin: ir/be/ppc32 */
+#ifndef PLUGIN_IR_BE_PPC
+#define PLUGIN_IR_BE_PPC 32 1
+#endif
+/* enabled plugin: ir/be/mips */
+#ifndef PLUGIN_IR_BE_MIPS
+#define PLUGIN_IR_BE_MIPS  1
+#endif
+/* enabled plugin: ir/be/arm */
+#ifndef PLUGIN_IR_BE_ARM
+#define PLUGIN_IR_BE_ARM  1
+#endif
+/* enabled plugin: ir/be/firm */
+#ifndef PLUGIN_IR_BE_FIRM
+#define PLUGIN_IR_BE_FIRM  1
+#endif
+/* enabled plugin: ir/be */
+#ifndef PLUGIN_IR_BE
+#define PLUGIN_IR_BE  1
+#endif
+
 #endif /* _FIRM_CONFIG_H */