aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIvan Dubrov <dubrov.ivan@gmail.com>2015-07-03 12:31:02 -0700
committerIvan Dubrov <dubrov.ivan@gmail.com>2015-07-03 12:31:02 -0700
commitfde6e5661d74e262fa892a8b0ac8fa8923ff5e2f (patch)
tree85a3f0d046042526a07455ef48136d12e1e9194e
parentf1a92cda3c29debd872100253acfb79d9dfff559 (diff)
parent2620fc4a2d3b6dcef7890c0850641dbe98894bec (diff)
downloaddcevm-fde6e5661d74e262fa892a8b0ac8fa8923ff5e2f.tar.gz
dcevm-fde6e5661d74e262fa892a8b0ac8fa8923ff5e2f.zip
Merge pull request #77 from mdaniel/shell-code-markup
Mark up shell commands using shell syntax
-rw-r--r--README.md16
1 files changed, 10 insertions, 6 deletions
diff --git a/README.md b/README.md
index 5628ef5a..e51d0f0f 100644
--- a/README.md
+++ b/README.md
@@ -28,15 +28,19 @@ You need the following software to build DCEVM:
Currently the build is not compatible with Clang on Mac OS X, you need to install gcc 4.8 using the [Homebrew](http://brew.sh/):
-* brew tap homebrew/versions
-* brew install gcc48
+```sh
+brew tap homebrew/versions
+brew install gcc48
+```
Then set the following environmental properties:
-* export CC=/usr/local/bin/gcc-4.8
-* export CFLAGS=-fobjc-exceptions
-* export CXX=/usr/local/bin/g++-4.8
-* export SA_LDFLAGS=-fobjc-exceptions
+```sh
+export CC=/usr/local/bin/gcc-4.8
+export CFLAGS=-fobjc-exceptions
+export CXX=/usr/local/bin/g++-4.8
+export SA_LDFLAGS=-fobjc-exceptions
+```
### Compiling DCEVM