Skip to content

Commit

Permalink
install libclang-rt-19-dev manually fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
vszakats committed Oct 22, 2024
1 parent 55d485d commit bf81464
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion _ci-linux-debian.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ dl=''

if [[ "${CW_CONFIG:-}" != *'gcc'* ]]; then
[ -n "${CW_CCSUFFIX:-}" ] || export CW_CCSUFFIX='-19'
extra+=" llvm${CW_CCSUFFIX} clang${CW_CCSUFFIX} lld${CW_CCSUFFIX} libclang-rt${CW_CCSUFFIX}-dev"
extra+=" llvm${CW_CCSUFFIX} clang${CW_CCSUFFIX} lld${CW_CCSUFFIX}"
if [ "${CW_CCSUFFIX}" != '-15' ]; then
extra+=" libclang-rt${CW_CCSUFFIX}-dev"
fi
fi

[[ "${CW_CONFIG:-}" = *'boringssl'* ]] && extra+=' golang'
Expand Down

0 comments on commit bf81464

Please sign in to comment.