Skip to content

Commit

Permalink
Update Dockerfile-centos7 to install additional dev tools
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jakule committed Jan 4, 2024
1 parent 63410ef commit f97c021
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.assets/Dockerfile-centos7-assets
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit f97c021

Please sign in to comment.