up vote 1 down vote favorite
2
share [g+] share [fb]

Like these options:

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
link|improve this question

60% accept rate
feedback

1 Answer

up vote 5 down vote accepted

--config -> mono_config_parse ()

--trace -> mono_jit_set_trace_options ()

--runtime -> mono_jit_init_version ()

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

--profiler -> mono_profiler_load ()

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.