From: Eric Fiselier Date: Fri, 12 Jul 2019 00:16:38 +0000 (+0000) Subject: Add another buildbot username to the workaround list X-Git-Tag: llvmorg-10-init~556 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=02fdc51c0440b457b6ae38c15193e2da24bf0be3;p=platform%2Fupstream%2Fllvm.git Add another buildbot username to the workaround list llvm-svn: 365848 --- diff --git a/libcxx/CMakeLists.txt b/libcxx/CMakeLists.txt index bb7bde1..fd74c27 100644 --- a/libcxx/CMakeLists.txt +++ b/libcxx/CMakeLists.txt @@ -150,7 +150,7 @@ set_property(CACHE LIBCXX_CXX_ABI PROPERTY STRINGS ;${CXXABIS}) # FIXME: This is a temporary hack to get the buildbots working while D63883 is in flight. # Without this all the bots fail while building libc++ if (DEFINED ENV{USER}) - if (("$ENV{USER}" STREQUAL "buildbot") OR ("$ENV{USER}" STREQUAL "llvmbb")) + if (("$ENV{USER}" STREQUAL "buildbot") OR (("$ENV{USER}" STREQUAL "llvmbb") OR ("$ENV{USER}" STREQUAL "buildslave"))) message(WARNING "OVERRIDING BUILDBOT CONFIG") set(LIBCXX_CXX_ABI "default" CACHE STRING "FIXME" FORCE) endif()