aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2020-02-23 20:23:03 +0200
committerGitHub <noreply@github.com>2020-02-23 20:23:03 +0200
commit9c604320a0cd47a5b22b52e157d43b73b0533e82 (patch)
tree0e90134be40901fcbea20faf36c539b474b80683 /ci
parentee94cb6c15732c8b5f329164af7f2b0a63f4fa6d (diff)
parent04e89d0867e358df347dbc8cb91e6df7bc365d9a (diff)
downloadmeson-9c604320a0cd47a5b22b52e157d43b73b0533e82.zip
meson-9c604320a0cd47a5b22b52e157d43b73b0533e82.tar.gz
meson-9c604320a0cd47a5b22b52e157d43b73b0533e82.tar.bz2
Merge pull request #6637 from mesonbuild/nirbheek/implement-symbolextractor-windows
Implement symbolextractor on windows + some cleanups/fixes
Diffstat (limited to 'ci')
-rw-r--r--ci/azure-steps.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/azure-steps.yml b/ci/azure-steps.yml
index fa28046..8ec219e 100644
--- a/ci/azure-steps.yml
+++ b/ci/azure-steps.yml
@@ -114,8 +114,8 @@ steps:
$env:Path = $origPath
# install llvm for clang-cl builds
- DownloadFile -Source 'http://releases.llvm.org/7.0.0/LLVM-7.0.0-win64.exe' -Destination LLVM-7.0.0-win64.exe
- Start-Process .\LLVM-7.0.0-win64.exe -ArgumentList '/S' -Wait
+ DownloadFile -Source 'http://releases.llvm.org/9.0.0/LLVM-9.0.0-win64.exe' -Destination LLVM-9.0.0-win64.exe
+ Start-Process .\LLVM-9.0.0-win64.exe -ArgumentList '/S' -Wait
$env:Path = "C:\Program Files\LLVM\bin;$env:Path"
$env:CC = "clang-cl"
$env:CXX = "clang-cl"