aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2020-02-18 01:12:34 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2020-02-22 06:49:34 +0530
commitcbd143844d54694fda90330e0d49c7ac408c532e (patch)
treebafb792aef5c886431803bc26091eb7d401d8ddc /ci
parentcace70c64eab4c4f5ba5bca7e76e02cab275b025 (diff)
downloadmeson-cbd143844d54694fda90330e0d49c7ac408c532e.zip
meson-cbd143844d54694fda90330e0d49c7ac408c532e.tar.gz
meson-cbd143844d54694fda90330e0d49c7ac408c532e.tar.bz2
symbolextractor: Add support for clang-cl
Requires the latest LLVm 9.0 release which implements the `-list` argument to `llvm-lib` and ships with an implementation of `nm` called `llvm-nm`.
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 1c861e7..15832bb 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"