Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2019-02-06 23:52:19 +0300
committerMiguel de Icaza <miguel@gnome.org>2019-02-06 23:52:19 +0300
commitb3eeb1667aaccfbfd1915723c43a20d184f870c1 (patch)
tree64933fd7ae9955b5cec6513727a061c893b2a946 /man
parentb4c66a1d59298d64c75a8470e106847d1a9eb70f (diff)
[man] mono.1 - describe how to get the list of options
Diffstat (limited to 'man')
-rw-r--r--man/mono.126
1 files changed, 22 insertions, 4 deletions
diff --git a/man/mono.1 b/man/mono.1
index b6c436cdd4a..a6020801aef 100644
--- a/man/mono.1
+++ b/man/mono.1
@@ -216,17 +216,35 @@ options. This feature is experimental.
.TP
.I llvmopts=[options]
Use this option to add more flags to the built-in set of flags passed to the
-LLVM optimizer. The list of possible flags that can be passed can be
-obtained by calling the bundled
+LLVM optimizer. When you invoke the
+.I mono
+command with the
+.I --aot=llvm
+it displays the current list of flags that are being passed to the
.I opt
-program that comes with Mono.
+command.
+.I The list of possible flags that can be passed can be
+obtained by calling the bundled
+.I opt
+program that comes with Mono, and calling it like this:
+.nf
+
+ opt --help
+
+.fi
+
.TP
.I llvmllc=[options]
Use this option to add more flags to the built-in set of flags passed to the
LLVM static compiler (llc). The list of possible flags that can be passed can be
obtained by calling the bundled
.I llc
-program that comes with Mono.
+program that comes with Mono, and calling it like this:
+.nf
+
+ llc --help
+
+.fi
.TP
.I llvm-outfile=[filename]
Gives the path for the temporary LLVM bitcode file created during AOT.