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:
authorDick Porter <dick@acm.org>2003-10-29 18:10:34 +0300
committerDick Porter <dick@acm.org>2003-10-29 18:10:34 +0300
commit0c11fa8fbd0466aab57de8e02ba88b02fae425a3 (patch)
tree9839c00a347a6ea661e30981de294e30d9ec4cc6 /man
parenta9d3e9d5b23e6599a3e73019b84d9e9c63afec7b (diff)
2003-10-29 Dick Porter <dick@ximian.com>
* man/mono.1: Document MONO_EXTERNAL_ENCODINGS variable svn path=/trunk/mono/; revision=19461
Diffstat (limited to 'man')
-rw-r--r--man/mono.120
1 files changed, 17 insertions, 3 deletions
diff --git a/man/mono.1 b/man/mono.1
index c571c3e6df0..64bebdeeefc 100644
--- a/man/mono.1
+++ b/man/mono.1
@@ -219,9 +219,10 @@ Directories are separated by the platform path separator (colons on unix). Examp
.B /home/username/lib:/usr/local/mono/lib
.TP
.I "MONO_DISABLE_SHM"
-If this variable is set, it disables the Windows I/O Emulation layer,
-and handles (files, events, mutexes, pipes) will not be shared across
-processes. This option is only available on Unix.
+If this variable is set, it disables the shared memory part of the
+Windows I/O Emulation layer, and handles (files, events, mutexes,
+pipes) will not be shared across processes. Process creation is also
+disabled. This option is only available on Unix.
.TP
.I "MONO_CFG_DIR"
If set, this variable overrides the default system configuration directory
@@ -237,6 +238,19 @@ If set, enables some features of the runtime useful for debugging.
Currently it only makes the runtime display the stack traces for all the
threads running and exit. It may not exit cleanly. Use at your own risk.
+.TP
+.I "MONO_EXTERNAL_ENCODINGS"
+If set, contains a colon-separated list of text encodings to try when
+turning externally-generated text (e.g. command-line arguments or
+filenames) into unicode. The encoding names come from the list
+provided by iconv, and the special case "default_locale" which refers
+to the current locale's default encoding.
+
+When reading externally-generated text strings UTF-8 is tried first,
+and then this list is tried in order with the first successful
+conversion ending the search. When writing external text (e.g. new
+filenames or arguments to new processes) the first item in this list
+is used, or UTF-8 if the environment variable is not set.
.SH FILES
On Unix assemblies are loaded from the installation lib directory. If you set
`prefix' to /usr, the assemblies will be located in /usr/lib. On