From f91a14ca03a76a7c034e6b71343a8cb2986ed594 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dami=C3=A1n=20Silvani?= Date: Mon, 3 Aug 2015 20:39:05 -0300 Subject: [PATCH] Update README.md --- README.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 47feb73aa43..cdd7dc9b1d5 100644 --- a/README.md +++ b/README.md @@ -14,10 +14,12 @@ A quick way to start (on Linux): * Clone this repository * Run inside directory: - mkdir build - cd build - cmake .. -DLLVM_TARGETS_TO_BUILD:STRING="X86;Mos6502" - make -j4 +```bash +mkdir build +cd build +cmake .. -DLLVM_TARGETS_TO_BUILD:STRING="X86;Mos6502" +make -j4 +``` If you want to build more targets, append them to the `LLVM_TARGETS_TO_BUILD` variable. Adjust `-j` option of `make` in case you have more processor cores. @@ -34,7 +36,9 @@ Run `make install` as usual. To run regression tests for the MOS 6502 target, run from `build/` - make check-llvm-codegen-mos6502 +```bash +make check-llvm-codegen-mos6502 +``` For more information on the LLVM test suite, refer to the [Testing Guide](http://llvm.org/docs/TestingGuide.html).