[libcxx-commits] [libcxx] r365848 - Add another buildbot username to the workaround list
Eric Fiselier via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Jul 11 17:16:38 PDT 2019
Author: ericwf
Date: Thu Jul 11 17:16:38 2019
New Revision: 365848
URL: http://llvm.org/viewvc/llvm-project?rev=365848&view=rev
Log:
Add another buildbot username to the workaround list
Modified:
libcxx/trunk/CMakeLists.txt
Modified: libcxx/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/CMakeLists.txt?rev=365848&r1=365847&r2=365848&view=diff
==============================================================================
--- libcxx/trunk/CMakeLists.txt (original)
+++ libcxx/trunk/CMakeLists.txt Thu Jul 11 17:16:38 2019
@@ -150,7 +150,7 @@ set_property(CACHE LIBCXX_CXX_ABI PROPER
# 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()
More information about the libcxx-commits
mailing list