File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2727 llvm : [
2828 ' 9' ,
2929 ' 10' ,
30- ' 11'
30+ ' 11' ,
31+ ' 12'
3132 ]
3233
3334 runs-on : ubuntu-20.04
@@ -100,7 +101,8 @@ jobs:
100101 ' macos-10.15'
101102 ]
102103 llvm : [
103- ' 11'
104+ ' 11' ,
105+ ' 12'
104106 ]
105107
106108 runs-on : ${{ matrix.os }}
Original file line number Diff line number Diff line change @@ -305,6 +305,10 @@ function GetLLVMVersion
305305 LLVM_VERSION=llvm-11
306306 return 0
307307 ;;
308+ 12)
309+ LLVM_VERSION=llvm-12
310+ return 0
311+ ;;
308312 * )
309313 # unknown option
310314 echo " [x] Unknown LLVM version ${1} . You may be able to manually build it with cxx-common."
Original file line number Diff line number Diff line change @@ -43,6 +43,9 @@ case ${LLVM_VERSION} in
4343 llvm11* )
4444 V=11
4545 ;;
46+ llvm12* )
47+ V=12
48+ ;;
4649 * )
4750 echo " Unknown LLVM version: ${LLVM_VERSION} "
4851 exit 1
You can’t perform that action at this time.
0 commit comments