File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -51,8 +51,8 @@ stages:
51
51
Linux_Clang_Release :
52
52
image : ${{ variables.linux }}
53
53
configuration : Release
54
- CC : clang
55
- CXX : clang++
54
+ CC : clang-18
55
+ CXX : clang++-18
56
56
CMAKE_OPTS : -DLLVM_ENABLE_WERROR=On -DLLVM_USE_SANITIZER='Address;Undefined' -DLLVM_ENABLE_LIBCXX=On -DLLVM_USE_LINKER=lld
57
57
CHECK_ALL_ENV : ASAN_OPTIONS=alloc_dealloc_mismatch=0
58
58
OS : Linux
@@ -98,7 +98,12 @@ stages:
98
98
inputs :
99
99
versionSpec : ' 3.x'
100
100
101
- - bash : sudo apt-get install ninja-build
101
+ - bash : |
102
+ sudo apt-get install ninja-build
103
+ wget https://apt.llvm.org/llvm.sh
104
+ chmod u+x llvm.sh
105
+ sudo ./llvm.sh 18
106
+ sudo apt-get install libc++-18-dev
102
107
displayName: 'Installing dependencies'
103
108
condition: eq(variables['image'], variables['linux'])
104
109
You can’t perform that action at this time.
0 commit comments