From 16ff81ed8b1ed9aa06fb1a731a2446b66cc49bef Mon Sep 17 00:00:00 2001 From: patrick Date: Mon, 11 Jan 2021 15:31:56 +0000 Subject: Remove libc++ and libc++abi 8.0.0 now that we switched to version 10.0.1 in the gnu/ directory. --- lib/libcxx/src/exception.cpp | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 lib/libcxx/src/exception.cpp (limited to 'lib/libcxx/src/exception.cpp') diff --git a/lib/libcxx/src/exception.cpp b/lib/libcxx/src/exception.cpp deleted file mode 100644 index 3d2dcfd5b10..00000000000 --- a/lib/libcxx/src/exception.cpp +++ /dev/null @@ -1,37 +0,0 @@ -//===------------------------ exception.cpp -------------------------------===// -// -// The LLVM Compiler Infrastructure -// -// This file is dual licensed under the MIT and the University of Illinois Open -// Source Licenses. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -#include "exception" -#include "new" -#include "typeinfo" - -#if defined(LIBCXXRT) || defined(LIBCXX_BUILDING_LIBCXXABI) || \ - (defined(__APPLE__) && !defined(_LIBCPP_BUILDING_HAS_NO_ABI_LIBRARY)) - #include - using namespace __cxxabiv1; - #define HAVE_DEPENDENT_EH_ABI 1 -#endif - -#if defined(_LIBCPP_ABI_MICROSOFT) -#include "support/runtime/exception_msvc.ipp" -#include "support/runtime/exception_pointer_msvc.ipp" -#elif defined(_LIBCPPABI_VERSION) -#include "support/runtime/exception_libcxxabi.ipp" -#include "support/runtime/exception_pointer_cxxabi.ipp" -#elif defined(LIBCXXRT) -#include "support/runtime/exception_libcxxrt.ipp" -#include "support/runtime/exception_pointer_cxxabi.ipp" -#elif defined(__GLIBCXX__) -#include "support/runtime/exception_glibcxx.ipp" -#include "support/runtime/exception_pointer_glibcxx.ipp" -#else -#include "include/atomic_support.h" -#include "support/runtime/exception_fallback.ipp" -#include "support/runtime/exception_pointer_unimplemented.ipp" -#endif -- cgit v1.2.3-59-g8ed1b