On 06/23/04 Joe Ante wrote: > How do I control the optimizations that the jit will do to the code I loaded > using mono_domain_assembly_open?
We aren't exporting those functions in a public header file. You should trust the jit to enable the optimizations that are most effective in short compile times. If you really need to change them, the functions are the following: void mono_set_defaults (int verbose_level, guint32 opts); int mono_parse_default_optimizations (const char* p); The functions are not likely to change, but they are not fully supported in mono 1.0. The value for p is the same documented for mono -O=.... lupus -- ----------------------------------------------------------------- [EMAIL PROTECTED] debian/rules [EMAIL PROTECTED] Monkeys do it better _______________________________________________ Mono-list maillist - [EMAIL PROTECTED] http://lists.ximian.com/mailman/listinfo/mono-list
