当前位置:  开发笔记 > 编程语言 > 正文

嵌入单声道时如何设置运行时选项?

如何解决《嵌入单声道时如何设置运行时选项?》经验,为你挑选了1个好方法。

像这些选项:

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

lupus.. 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_load()



1> lupus..:

--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_load()

推荐阅读
和谐啄木鸟
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有