From ed22eb44cc6be66b3cb72cd1d6ed5fbcf3e5b32c Mon Sep 17 00:00:00 2001 From: JeremyRand <244188+JeremyRand@users.noreply.github.com> Date: Mon, 18 Dec 2023 03:24:24 +0000 Subject: [PATCH] Document libomp-dev dependency (#5228) Co-authored-by: Jeremy Rand --- docs/how-to-build/how-to-build.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/how-to-build/how-to-build.md b/docs/how-to-build/how-to-build.md index b6bfe8abc..e7cbf4727 100644 --- a/docs/how-to-build/how-to-build.md +++ b/docs/how-to-build/how-to-build.md @@ -37,6 +37,7 @@ Install required build dependencies: * cmake * protocol buffer (protobuf) headers files and protobuf compiler * glslang +* (optional) LLVM OpenMP header files # If building with Clang, and multithreaded CPU inference is desired * (optional) vulkan header files and loader library # If building with Vulkan, without simplevk * (optional) opencv # For building examples @@ -46,11 +47,11 @@ On some systems there are no Vulkan drivers easily available at the moment (Octo On Debian 10+, Ubuntu 20.04+, or Raspberry Pi OS, you can install all required dependencies using: ```shell -sudo apt install build-essential git cmake libprotobuf-dev protobuf-compiler libvulkan-dev vulkan-tools libopencv-dev +sudo apt install build-essential git cmake libprotobuf-dev protobuf-compiler libomp-dev libvulkan-dev vulkan-tools libopencv-dev ``` On earlier Debian or Ubuntu, you can install all required dependencies using: ```shell -sudo apt install build-essential git cmake libprotobuf-dev protobuf-compiler libvulkan-dev vulkan-utils libopencv-dev +sudo apt install build-essential git cmake libprotobuf-dev protobuf-compiler libomp-dev libvulkan-dev vulkan-utils libopencv-dev ``` On Redhat or Centos, you can install all required dependencies using: ```shell