Skip to content

Commit 894c0c8

Browse files
committed
[libc++] Fix CI on release/12.x branch
The new Docker images don't have gcc or g++, only the versioned equivalents.
1 parent 275ffa5 commit 894c0c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libcxx/utils/ci/run-buildbot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ generic-32bit)
168168
check-cxx-cxxabi
169169
;;
170170
generic-gcc)
171-
export CC=gcc
172-
export CXX=g++
171+
export CC=gcc-10
172+
export CXX=g++-10
173173
clean
174174
# FIXME: Re-enable experimental testing on GCC. GCC cares about the order
175175
# in which we link -lc++experimental, which causes issues.

0 commit comments

Comments
 (0)