build: add clang to ./installdeps for MSYS2

Add clang when installing for CLANG* environments in MSYS2 because this
package is no longer included by default in the set of packages we
install.

Signed-off-by: Rafael Kitover <rkitover@gmail.com>
This commit is contained in:
Rafael Kitover 2024-03-08 23:13:32 +00:00
parent 3ec8960f1a
commit 404e9a1a55
No known key found for this signature in database
GPG Key ID: 08AB596679D86240
1 changed files with 2 additions and 2 deletions

View File

@ -1139,10 +1139,10 @@ windows_installdeps() {
case "$target" in
*clang*)
pkgs="lldb"
pkgs="lldb clang"
;;
*)
pkgs="$pkgs gcc gcc-libs gcc-libgfortran"
pkgs="gcc gcc-libs gcc-libgfortran"
;;
esac