From d0b0eb455f2ae209fe94a4ddde6415158f3382ea Mon Sep 17 00:00:00 2001 From: Alexey Bader Date: Thu, 2 Apr 2020 18:53:14 +0300 Subject: [PATCH] [SYCL][Doc] Update prerequisites in GetStartedGuide New instructions on configuring build system files and building the compiler rely on ninja build tool. Signed-off-by: Alexey Bader --- sycl/doc/GetStartedGuide.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/sycl/doc/GetStartedGuide.md b/sycl/doc/GetStartedGuide.md index 464c7587269ef..6a0d2b38330a4 100644 --- a/sycl/doc/GetStartedGuide.md +++ b/sycl/doc/GetStartedGuide.md @@ -24,6 +24,7 @@ and a wide range of compute accelerators such as GPU and FPGA. * `git` - https://git-scm.com/downloads * `cmake` version 3.2 or later - http://www.cmake.org/download/ * `python` - https://www.python.org/downloads/release/python-2716/ +* `ninja` - https://github.com/ninja-build/ninja/wiki/Pre-built-Ninja-packages * C++ compiler * Linux: `GCC` version 5.1.0 or later (including libstdc++) - https://gcc.gnu.org/install/ @@ -259,13 +260,8 @@ c:\oclcpu_rt_\install.bat c:\tbb_\tbb\bin\intel64\vc14 To verify that built DPC++ toolchain is working correctly, run: -**Linux** +**Linux/Windows (64-bit)** ```bash -make -j`nproc` check-all -``` - -**Windows (64-bit)** -```bat ninja check-all ```