From 6a405923306b7e8f275ba661c799f72e9b5fe5cd Mon Sep 17 00:00:00 2001 From: Udit Agarwal Date: Thu, 31 Oct 2024 11:59:56 -0700 Subject: [PATCH 1/2] [Doc] Update GetStartedGuide.md to add instructions on obtaining `zstd` --- sycl/doc/GetStartedGuide.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sycl/doc/GetStartedGuide.md b/sycl/doc/GetStartedGuide.md index 366a9ae49ea35..eb9641a8641a2 100644 --- a/sycl/doc/GetStartedGuide.md +++ b/sycl/doc/GetStartedGuide.md @@ -48,6 +48,9 @@ and a wide range of compute accelerators such as GPU and FPGA. * libhwloc-dev or hwloc-devel package on linux * C++ compiler * See LLVM's [host compiler toolchain requirements](https://github.com/intel/llvm/blob/sycl/llvm/docs/GettingStarted.rst#host-c-toolchain-both-compiler-and-standard-library) +* `zstd` version 1.5.6 or later (Optional) + * For Ubuntu, you can obtain it by `apt install libzstd-dev` + * On Windows, you can build zstd manually from source [using Visual Studio](https://github.com/facebook/zstd?tab=readme-ov-file#visual-studio-windows) and then add the `zstd` install directory to the `PATH` enviornment variable. Alternatively, you can use a Docker image that has everything you need for building pre-installed: From cd2545ccbb7c586ed84cfd5f85bc84e3be57ccad Mon Sep 17 00:00:00 2001 From: Udit Agarwal Date: Thu, 31 Oct 2024 12:12:15 -0700 Subject: [PATCH 2/2] Fix typo --- sycl/doc/GetStartedGuide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sycl/doc/GetStartedGuide.md b/sycl/doc/GetStartedGuide.md index eb9641a8641a2..ee1a6253094bc 100644 --- a/sycl/doc/GetStartedGuide.md +++ b/sycl/doc/GetStartedGuide.md @@ -50,7 +50,7 @@ and a wide range of compute accelerators such as GPU and FPGA. * See LLVM's [host compiler toolchain requirements](https://github.com/intel/llvm/blob/sycl/llvm/docs/GettingStarted.rst#host-c-toolchain-both-compiler-and-standard-library) * `zstd` version 1.5.6 or later (Optional) * For Ubuntu, you can obtain it by `apt install libzstd-dev` - * On Windows, you can build zstd manually from source [using Visual Studio](https://github.com/facebook/zstd?tab=readme-ov-file#visual-studio-windows) and then add the `zstd` install directory to the `PATH` enviornment variable. + * For Windows, you can build `zstd` manually from source [using Visual Studio](https://github.com/facebook/zstd?tab=readme-ov-file#visual-studio-windows) and then add the `zstd` install directory to the `PATH` environment variable. Alternatively, you can use a Docker image that has everything you need for building pre-installed: