2009-02-24 5 views
2

Как эти варианты:Как установить параметры времени выполнения при встраивании моно?

 
Usage is: mono [options] program [program-options] 

Development: 
    --aot     Compiles the assembly to native code 
    --debug[=] Enable debugging support, use --help-debug for details 
    --profile[=profiler] Runs in profiling mode with the specified profiler module 
    --trace[=EXPR]   Enable tracing, use --help-trace for details 
    --help-devel   Shows more options available to developers 

Runtime: 
    --config FILE   Loads FILE as the Mono config 
    --verbose, -v   Increases the verbosity level 
    --help, -h    Show usage information 
    --version, -V   Show version information 
    --runtime=VERSION  Use the VERSION runtime, instead of autodetecting 
    --optimize=OPT   Turns on or off a specific optimization 
          Use --list-opt to get a list of optimizations 
    --security[=mode]  Turns on the unsupported security manager (off by default) 
          mode is one of cas, core-clr, verifiable or validil 

ответ

6

--Config -> mono_config_parse()

--trace -> mono_jit_set_trace_options()

--runtime -> mono_jit_init_version()

- -verbose и -optimize -> mono_set_defaults() и mono_parse_default_optimizations()

--profiler -> mono_profiler_lo Объявление()

0

вы можете сделать это в моно 4.x

mono --optimize=float32 program.exe 

или

const char* jit_options[] = {"--optimize=float32"}; 
mono_jit_parse_options(1, (char**)jit_options); 
+0

Добавить какое-то объяснение с ответом на том, как пригодился этот ответ OP в фиксировании текущие проблемы –