Make JIT parse default config files before init
authorAlp Toker <alp@mono-cvs.ximian.com>
Sat, 24 Dec 2005 01:08:25 +0000 (01:08 -0000)
committerAlp Toker <alp@mono-cvs.ximian.com>
Sat, 24 Dec 2005 01:08:25 +0000 (01:08 -0000)
svn path=/trunk/mcs/; revision=54818

mcs/tools/cilc/ChangeLog
mcs/tools/cilc/cilc.cs

index be0c57b923165cafbf027dfbb13fccfca97ef2f9..5527c21834908b1df0c49ac0e6107cd1ecf36d20 100644 (file)
@@ -1,6 +1,7 @@
 2005-12-24  Alp Toker  <alp@atoker.com>
 
-       * cilc.cs: Fix generation of mono method signature a bit (still needs work)
+       * cilc.cs: Fix generation of mono method signature a bit (still needs work),
+       Make JIT parse default config files before init
 
 2005-12-22  Alp Toker  <alp@atoker.com>
 
index 44c41ba8154529dd2b7de2e878e6b8b8dff0dece..d6c9e7f2787cd68151441f0dae835ffc55a7da71 100644 (file)
@@ -356,6 +356,7 @@ public class cilc
                Cindex.WriteLine ("{");
                Cindex.WriteLine ("static MonoDomain *domain = NULL;");
                Cindex.WriteLine ("if (domain != NULL) return domain;");
+               Cindex.WriteLine ("mono_config_parse (NULL);");
                Cindex.WriteLine ("domain = mono_jit_init (\"cilc\");");
                Cindex.WriteLine ();
                Cindex.WriteLine ("#ifdef CILC_BUNDLE");