From 3bc504aae63e2f4504cb3be63f85f85296f20aba Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Fri, 19 Apr 2024 08:31:57 +0000 Subject: [PATCH] Clarify install instructions in README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 16550b8..c3c78f1 100644 --- a/README.md +++ b/README.md @@ -19,9 +19,11 @@ This language is designed for: - Compiler must avoid generating logic that the user does not write ## Installation -You can install the compiler by running: +Before installing the compiler with `go install`, you will need to install the +[Go programming language](https://go.dev/) on your system. Afterwards, you can +install the compiler and associated tooling by running: -`go install ./cmd/fsplc` +`go install ./cmd/*` The `fsplc` program depends on the LLVM IR compiler (`llc`). If it is not found, it will attempt to use `clang` instead but with some features disabled. Please