Skip to content

Commit

Permalink
Fix: For RedHat, Explictly Install lld as a Dependency
Browse files Browse the repository at this point in the history
RedHat-Ubi8-Clang builds had started to fail because lld (linker) was
not being found. Now we explicitly include "lld" on the "microdnf
install" line along with $compiler and the other items, and it works
again.
  • Loading branch information
dgreatwood committed Nov 10, 2024
1 parent 2d573ad commit 3b1749e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
if: contains(matrix.os, 'redhat')
run: |
if [ ${{ matrix.compiler }} = gcc ]; then compiler=gcc-c++; else compiler=llvm-toolset; fi
microdnf -y install $compiler pkgconf cmake openssl-devel zlib-devel libcurl-devel git python3-pip unzip
microdnf -y install $compiler lld pkgconf cmake openssl-devel zlib-devel libcurl-devel git python3-pip unzip
curl -LO https://github.com/ninja-build/ninja/releases/latest/download/ninja-linux.zip
unzip ninja-linux.zip
mv ninja /usr/local/bin
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.11.20241018
0.4.12.20241109

0 comments on commit 3b1749e

Please sign in to comment.