forgot a file
[libfirm] / ir / be / bejavacoal.c
index fde61e6..82a2e24 100644 (file)
@@ -21,6 +21,8 @@
 
 #include "bejavacoal.h"
 
+#ifdef WITH_JVM
+
 /* Path to the jar file. A little OS dependent convenience. */
 #ifdef _WIN32
 static char jar_file[512] = "y:\\user\\hack\\public\\coal.jar";
@@ -30,7 +32,7 @@ static char jar_file[512] = "/ben/hack/public/coal.jar";
 
 static char cls_name[256] = "coalescing/mst/safe/Algo";
 
-/* Name of teh JVM dll/so */
+/* Name of the JVM dll/so */
 static char jvm_lib[512] = { 0 };
 
 #ifdef WITH_LIBCORE
@@ -41,14 +43,18 @@ static const lc_opt_table_entry_t options[] = {
        { NULL }
 };
 
-void be_java_coal_register_options(lc_opt_entry_t *grp)
+void be_init_javacoal(void)
 {
+       lc_opt_entry_t *be_grp = lc_opt_get_grp(firm_opt_get_root(), "be");
+       lc_opt_entry_t *ra_grp = lc_opt_get_grp(be_grp, "ra");
+       lc_opt_entry_t *chordal_grp = lc_opt_get_grp(ra_grp, "chordal");
        lc_opt_entry_t *jc_grp = lc_opt_get_grp(grp, "jc");
        lc_opt_add_table(jc_grp, options);
 }
-#endif
 
-#ifdef WITH_JVM
+BE_REGISTER_MODULE_CONSTRUCTOR(be_init_javacoal);
+#endif /* WITH_LIBCORE */
+
 #include <jni.h>
 
 typedef struct _jni_env_t {
@@ -462,5 +468,4 @@ void be_java_coal_start_jvm(void)
 {
 }
 
-
 #endif /* WITH_JVM */