From f97c021f1e0fb7d4058c04e9e879d22db49a9624 Mon Sep 17 00:00:00 2001 From: Jakub Nyckowski Date: Thu, 4 Jan 2024 17:42:21 -0500 Subject: [PATCH] Update Dockerfile-centos7 to install additional dev tools This commit updates the build command in Dockerfile-centos7 to install 'clang-resource-headers' and 'libclang'. These additions are needed by boring-rs library to build correctly. We're building it as a part of our FIPS build. --- build.assets/Dockerfile-centos7-assets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.assets/Dockerfile-centos7-assets b/build.assets/Dockerfile-centos7-assets index b49279cc1f7c2..641c86f24b3fc 100644 --- a/build.assets/Dockerfile-centos7-assets +++ b/build.assets/Dockerfile-centos7-assets @@ -59,7 +59,7 @@ RUN git clone --branch llvmorg-12.0.0 --depth=1 https://github.com/llvm/llvm-pro -DLLVM_ENABLE_PROJECTS=clang \ -DLLVM_BUILD_TOOLS=ON \ -G \"Unix Makefiles\" ../llvm && \ -make -j$(grep -c processor /proc/cpuinfo) install-llvm-strip install-clang-format install-clang"' && \ +make -j$(grep -c processor /proc/cpuinfo) install-llvm-strip install-clang-format install-clang install-clang-resource-headers install-libclang"' && \ cd ../.. && \ rm -rf llvm-project