From c7f96843842d898a6d93eb970f8b360eee25486c Mon Sep 17 00:00:00 2001 From: Isuru Fernando Date: Tue, 16 Jun 2020 10:59:41 -0500 Subject: [PATCH] FIx typo in FAQ --- docs/FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/FAQ.md b/docs/FAQ.md index 95ebb496d..2e7db0df9 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -167,7 +167,7 @@ If you want to build on Windows, there are two options: 1. MSVC ABI compatible DLL with clang If you want BLIS to be compatible with DLLs built by MSVC, you need to use `clang.exe` to build BLIS as BLIS does not support building with Visual Studio C compiler (``cl.exe``). To build BLIS, you need a recent clang from [LLVM](https://releases.llvm.org/download.html), an [MSYS2](https://www.msys2.org/) environment (for build tools like `sed`, `bash`), a Visual Studio 2015 or later environment (for C standard library) and Windows SDK. - To build `BLIS`, activate the Visual Studio environment from a command prompy and drop in to a bash shell from MSYS2 environment. Then set `AR=llvm-ar`, `AS=llvm-as`, `RANLIB=echo`, `CC=clang` and then follow the instructions for the Linux build. + To build `BLIS`, activate the Visual Studio environment from a command prompt and drop in to a bash shell from MSYS2 environment. Then set `AR=llvm-ar`, `AS=llvm-as`, `RANLIB=echo`, `CC=clang` and then follow the instructions for the Linux build. 2. MinGW DLL