File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -73,11 +73,17 @@ jobs:
73
73
matrix :
74
74
include :
75
75
- clang : " 3.5"
76
+ cxxflags : " -stdlib=libc++"
76
77
- clang : " 3.6"
78
+ cxxflags : " -stdlib=libc++"
77
79
- clang : " 3.7"
80
+ cxxflags : " -stdlib=libc++"
78
81
- clang : " 3.8"
82
+ cxxflags : " -stdlib=libc++"
79
83
- clang : " 3.9"
84
+ cxxflags : " -stdlib=libc++"
80
85
- clang : " 4.0"
86
+ cxxflags : " -stdlib=libc++"
81
87
- clang : " 5.0"
82
88
- clang : " 6.0"
83
89
- clang : " 7"
@@ -105,7 +111,9 @@ jobs:
105
111
env :
106
112
CC : clang-${{ matrix.clang }}
107
113
CXX : clang++-${{ matrix.clang }}
108
- CXXFLAGS : ${{ matrix.cxxflags }}
114
+ CXXFLAGS : >-
115
+ ${{ matrix.cxxflags }}
116
+ ${{ contains(matrix.cxxflags, 'libc++') && '-I/usr/lib/llvm-10/include/c++/v1/' || '' }}
109
117
- name : Build
110
118
run : cmake --build .
111
119
- name : Test
You can’t perform that action at this time.
0 commit comments