aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Daniel <mdaniel@gmail.com>2015-07-03 11:33:20 -0700
committerMatthew Daniel <mdaniel@gmail.com>2015-07-03 11:33:20 -0700
commit2620fc4a2d3b6dcef7890c0850641dbe98894bec (patch)
tree439e5625f14dcb71275b08141174ffe3dc673736
parent31f5a79f5052e7d86486cce997a9dacb9430d1d1 (diff)
downloaddcevm-2620fc4a2d3b6dcef7890c0850641dbe98894bec.tar.gz
dcevm-2620fc4a2d3b6dcef7890c0850641dbe98894bec.zip
Mark up shell commands using shell syntax
No need to make people copy-and-paste around the bullet-points
-rw-r--r--README.md16
1 files changed, 10 insertions, 6 deletions
diff --git a/README.md b/README.md
index a83af75a..3a1c82f7 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