From acc399ec93080e11a0a4b078976b5baf3db86418 Mon Sep 17 00:00:00 2001 From: Dan Miller Date: Tue, 9 Apr 2019 08:14:21 -0700 Subject: [PATCH] Correct omissions and typos in README Add a missing step in Step 2 - CMake must be run again after cloning llvm-cbe Remove duplicate instructions to make lli --- README.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/README.md b/README.md index e001d0d0..f1feccca 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,7 @@ Next, download and compile llvm-cbe from the same folder: cd $HOME/llvm/projects git clone https://github.com/JuliaComputing/llvm-cbe cd ../build + cmake .. make llvm-cbe To run tests, you will also need to build `lli`: @@ -53,12 +54,6 @@ To run tests, you will also need to build `lli`: make lli ``` -To run tests, you will also need to build `lli`: - -```sh - make lli -``` - Step 3: Usage Examples ======================