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
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2014-04-11 20:04:10 +0400
committerMiguel de Icaza <miguel@gnome.org>2014-04-11 20:04:10 +0400
commit53a08ebc1df2cb6d68fc861f64ae6febb74b2e6d (patch)
tree941f6e1bfdf2615ec77b67c314e1d1da3cc9195c /README.md
parent365224113288d80ff396634fed1d106b511e18b9 (diff)
Style on the README file, make it more readable for command line users
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 10 insertions, 8 deletions
diff --git a/README.md b/README.md
index 5ffe56a63d2..e8ae27bfe6c 100644
--- a/README.md
+++ b/README.md
@@ -83,10 +83,13 @@ For people with non-standard installations of the auto* utils and of
pkg-config (common on misconfigured OSX and windows boxes), you could get
an error like this:
-`./configure: line 19176: syntax error near unexpected token 'PKG_CHECK_MODULES(BASE_DEPENDENCIES,' ...`
+ ./configure: line 19176: syntax error near unexpected token 'PKG_CHECK_MODULES(BASE_DEPENDENCIES,' ...
This means that you need to set the ACLOCAL_FLAGS environment variable
-when invoking autogen.sh, like this: `ACLOCAL_FLAGS="-I $acprefix/share/aclocal" ./autogen.sh --prefix=/usr/local`
+when invoking autogen.sh, like this:
+
+ ACLOCAL_FLAGS="-I $acprefix/share/aclocal" ./autogen.sh --prefix=/usr/local
+
where $acprefix is the prefix where aclocal has been installed.
This will automatically go into the mcs/ tree and build the
binaries there.
@@ -97,7 +100,7 @@ runtime called 'mono'. You can use two make variables
EXTERNAL_MCS and EXTERNAL_RUNTIME to override these. e.g., you
can say:
-`make EXTERNAL_MCS=/foo/bar/mcs EXTERNAL_RUNTIME=/somewhere/else/mono`
+ make EXTERNAL_MCS=/foo/bar/mcs EXTERNAL_RUNTIME=/somewhere/else/mono
If you don't have a working Mono installation
---------------------------------------------
@@ -136,7 +139,7 @@ class libraries, you need to re-run 'configure' with the
Expect to find a few test suite failures. As a sanity check, you
can compare the failures you got with
-`https://wrench.mono-project.com/Wrench/`
+ https://wrench.mono-project.com/Wrench/
You can now install mono with: `make install`
@@ -153,10 +156,9 @@ building Mono might want to use:
* `--with-sgen=yes,no` - Generational GC support: Used to enable or disable the
compilation of a Mono runtime with the SGen garbage collector.
- * On platforms that support it, after building Mono, you
-will have both a mono binary and a mono-sgen binary.
-Mono uses Boehm, while mono-sgen uses the Simple
-Generational GC.
+ * On platforms that support it, after building Mono, you will have
+both a mono binary and a mono-sgen binary. Mono uses Boehm, while
+mono-sgen uses the Simple Generational GC.
* `--with-gc=[boehm, included, sgen, none]` - Selects the default Boehm garbage
collector engine to use.