Skip to content

Commit 32f869e

Browse files
committed
[libc++] Remove workaround for D63883
I tried applying D63883 three times and could never get around to making it work. I'm giving up on that for now, but soon this should be irrelevant anyway since all builds will move to the monorepo (where we're always using the in-tree libc++abi unless explicitly specified otherwise). llvm-svn: 373384
1 parent 890090f commit 32f869e

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

libcxx/CMakeLists.txt

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -148,16 +148,6 @@ set(LIBCXX_CXX_ABI "default" CACHE STRING
148148
set(CXXABIS none default libcxxabi libcxxrt libstdc++ libsupc++ vcruntime)
149149
set_property(CACHE LIBCXX_CXX_ABI PROPERTY STRINGS ;${CXXABIS})
150150

151-
# FIXME: This is a temporary hack to get the buildbots working while D63883 is in flight.
152-
# Without this all the bots fail while building libc++
153-
if (DEFINED ENV{USER})
154-
if (("$ENV{USER}" STREQUAL "buildbot") OR (("$ENV{USER}" STREQUAL "llvmbb") OR ("$ENV{USER}" STREQUAL "buildslave")))
155-
if (LIBCXX_CXX_ABI STREQUAL "libcxxabi" AND NOT DEFINED LIBCXX_CXX_ABI_INCLUDE_PATHS)
156-
message(WARNING "OVERRIDING BUILDBOT CONFIG")
157-
set(LIBCXX_CXX_ABI "default" CACHE STRING "FIXME" FORCE)
158-
endif()
159-
endif()
160-
endif()
161151
# Setup the default options if LIBCXX_CXX_ABI is not specified.
162152
if (LIBCXX_CXX_ABI STREQUAL "default")
163153
find_path(

0 commit comments

Comments
 (0)