[PKG-140]: Updates build scripts to build pg_stat_monitor with LLVM 1… (#476)

[PKG-140]: Updates build scripts to build pg_stat_monitor with LLVM 17.0.
This commit is contained in:
Muhammad Aqeel
2024-07-23 14:53:07 +05:00
committed by GitHub
parent dacb41f9e4
commit 16ec8362e2

View File

@@ -211,7 +211,7 @@ install_deps() {
if [ x"$RHEL" = x8 ];
then
clang_version=$(yum list --showduplicates clang-devel | grep "16.0" | awk '{print $2}' | head -n 1)
clang_version=$(yum list --showduplicates clang-devel | grep "17.0" | awk '{print $2}' | head -n 1)
yum install -y clang-devel-${clang_version} clang-${clang_version}
dnf module -y disable llvm-toolset
else