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/mcs.1
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2004-01-09 17:07:45 +0300
committerMiguel de Icaza <miguel@gnome.org>2004-01-09 17:07:45 +0300
commit82e902b772a197f7a8ae049883475a68dbaec29a (patch)
tree537748738969c14dc383ef54bb1ebf3981287555 /man/mcs.1
parent6c06cfbe2e74125fde73028ded7a9a02fbdbf53f (diff)
Update man page with Zoltan's new improvements
svn path=/trunk/mono/; revision=21874
Diffstat (limited to 'man/mcs.1')
-rwxr-xr-xman/mcs.140
1 files changed, 24 insertions, 16 deletions
diff --git a/man/mcs.1 b/man/mcs.1
index 31b1350d54c..e135642da12 100755
--- a/man/mcs.1
+++ b/man/mcs.1
@@ -117,6 +117,15 @@ name will be the file name.
Links to the specified RESOURCE. The optional ID can be used to give
a name to the linked resource.
.TP
+.I -r:ASSEMBLY1[,ASSEMBLY2], \-r ASSEMBLY1[,ASSEMBLY2]
+Reference the named assemblies. Use this to use classes from the named
+assembly in your program. The assembly will be loaded from either the
+system directory where all the assemblies live, or from the path
+explicitly given with the -L option.
+.PP
+You can also use a semicolon to separate the assemblies instead of a
+comma.
+.TP
.I \-recurse:PATTERN, --recurse PATTERN
Does recursive compilation using the specified pattern. In Unix the
shell will perform globbing, so you migth want to use it like this:
@@ -137,22 +146,6 @@ in the compilation process.
.I \-unsafe, -unsafe+
Enables compilation of unsafe code.
.TP
-.I \-warnaserror, \-warnaserror+
-Treat warnings as errors.
-.TP
-.I \-warn:LEVEL
-Sets the warning level. 0 is the lowest warning level, and 4 is the
-highest. The default is 2.
-.TP
-.I -r:ASSEMBLY1[,ASSEMBLY2], \-r ASSEMBLY1[,ASSEMBLY2]
-Reference the named assemblies. Use this to use classes from the named
-assembly in your program. The assembly will be loaded from either the
-system directory where all the assemblies live, or from the path
-explicitly given with the -L option.
-.PP
-You can also use a semicolon to separate the assemblies instead of a
-comma.
-.TP
.I \-v
Debugging. Turns on verbose yacc parsing.
.TP
@@ -162,6 +155,21 @@ Turns on C# 2.0 language features.
.I \-\-version
Shows the compiler version.
.TP
+.I \-warnaserror, \-warnaserror+
+Treat warnings as errors.
+.TP
+.I \-warn:LEVEL
+Sets the warning level. 0 is the lowest warning level, and 4 is the
+highest. The default is 2.
+.TP
+.I \-win32res:FILE
+Specifies a Win32 resource file (.res) to be bundled into the
+resulting assembly.
+.TP
+.I \-win32icon:FILE
+Attaches the icon specified in FILE on the output into the resulting
+assembly.
+.TP
.I \-\-
Use this to stop option parsing, and allow option-looking parameters
to be passed on the command line.