aboutsummaryrefslogtreecommitdiffstats
path: root/dist
diff options
context:
space:
mode:
authorPatrick Lehmann <Patrick.Lehmann@plc2.de>2018-11-26 02:23:34 +0100
committertgingold <tgingold@users.noreply.github.com>2018-11-26 05:16:11 +0100
commitd570ee98eaa200cc1bbf481035aa3bb1680504db (patch)
treeb70b8c858ff7dc2a6d65333161109357cbd466ce /dist
parentfce919f080ccb4ddaa2b49a5d742dbfc346ed6e2 (diff)
downloadghdl-d570ee98eaa200cc1bbf481035aa3bb1680504db.tar.gz
ghdl-d570ee98eaa200cc1bbf481035aa3bb1680504db.tar.bz2
ghdl-d570ee98eaa200cc1bbf481035aa3bb1680504db.zip
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`.
Diffstat (limited to 'dist')
-rw-r--r--dist/windows/appveyor/install.ps14
1 files changed, 2 insertions, 2 deletions
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
}
}