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/mcs/docs
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2013-05-05 22:30:21 +0400
committerMiguel de Icaza <miguel@gnome.org>2013-06-21 17:52:20 +0400
commit3792aca2ea268a11c728e5caf5c006cc2af5b341 (patch)
tree8f89c4f335ac89988fa85bd8efbc11ca93685154 /mcs/docs
parentdb06719d2a582d2a6f5195eb171c6944c075aef9 (diff)
[compiler docs]: Update to reflect way to debug the parser
Diffstat (limited to 'mcs/docs')
-rwxr-xr-xmcs/docs/compiler.txt6
1 files changed, 4 insertions, 2 deletions
diff --git a/mcs/docs/compiler.txt b/mcs/docs/compiler.txt
index aff44d051b1..328f174f71d 100755
--- a/mcs/docs/compiler.txt
+++ b/mcs/docs/compiler.txt
@@ -1172,7 +1172,9 @@
$ csharp -v -v
This will turn on the parser debugging output and will
- generate a lot of data when parsing its input.
+ generate a lot of data when parsing its input (make sure that
+ your parser has been compiled with the -v flag, see above for
+ details).
To start with a new completion scheme, type your C# code and
then hit the tab key to trigger the completion engine. In the
@@ -1267,7 +1269,7 @@
We then rebuild our compiler:
(cd mcs/; make cs-parser.jay)
- (cd tools/csharplib; make install)
+ (cd class/Mono.CSharp; make install)
And re-run csharp: