From 7d60cd898ceece48e2284a295d13b2923a304c8a Mon Sep 17 00:00:00 2001 From: Mehdi Amini Date: Fri, 5 Apr 2019 07:30:16 -0700 Subject: [PATCH] Add mentions of requirements before the build instructions The `Getting Started` instructions requires git, ninja, and a working C++ host toolchain. -- PiperOrigin-RevId: 242121953 --- mlir/README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mlir/README.md b/mlir/README.md index 4f25623..ca55cda 100644 --- a/mlir/README.md +++ b/mlir/README.md @@ -84,7 +84,11 @@ and by making references explicit with `function_ref`. # Getting started with MLIR -MLIR has been tested on Linux and macOS, with recent versions of clang and with gcc 7. +The following instructions assume that you have `git`, +[`ninja`](https://ninja-build.org/), and a working C++ toolchain. In the future, +we aim to align on the same level of platform support as +[LLVM](https://llvm.org/docs/GettingStarted.html#requirements). For now, MLIR +has been tested on Linux and macOS, with recent versions of clang and with gcc 7. ``` git clone https://github.com/llvm/llvm-project.git -- 2.7.4