From d570ee98eaa200cc1bbf481035aa3bb1680504db Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Mon, 26 Nov 2018 02:23:34 +0100 Subject: Removed explicit llvm35 depdendency MinGW changed from `*llvm35` and `*clang35` packages to `*llvm` and `clang` packages. This PR removes the version number for LLVM. Latest version used by MinGW is `7.0.0-1`. --- dist/windows/appveyor/install.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/windows') diff --git a/dist/windows/appveyor/install.ps1 b/dist/windows/appveyor/install.ps1 index bcff78ac8..bf780fa19 100644 --- a/dist/windows/appveyor/install.ps1 +++ b/dist/windows/appveyor/install.ps1 @@ -12,7 +12,7 @@ if ($env:BUILD_MINGW -eq "mingw32") { } elseif ($env:BUILD_BACKEND -eq "llvm") - { C:\msys64\usr\bin\pacman -S mingw-w64-i686-llvm35 mingw-w64-i686-clang35 --noconfirm + { C:\msys64\usr\bin\pacman -S mingw-w64-i686-llvm mingw-w64-i686-clang --noconfirm } } elseif ($env:BUILD_MINGW -eq "mingw64") @@ -21,7 +21,7 @@ elseif ($env:BUILD_MINGW -eq "mingw64") { } elseif ($env:BUILD_BACKEND -eq "llvm") - { C:\msys64\usr\bin\pacman -S mingw-w64-x86_64-llvm35 mingw-w64-x86_64-clang35 --noconfirm + { C:\msys64\usr\bin\pacman -S mingw-w64-x86_64-llvm mingw-w64-x86_64-clang --noconfirm } } -- cgit v1.2.3