From 790b4e527b8403d2e1e220a7a92ed032538b659b Mon Sep 17 00:00:00 2001 From: Jason Molenda Date: Fri, 7 Mar 2014 23:23:10 +0000 Subject: [PATCH] Re-enable ProcessElfCore for non-FreeBSD/Linux builds; with Greg's fix in r203274 this is not installing itself for Mach-O binaries. llvm-svn: 203310 --- lldb/source/lldb.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lldb/source/lldb.cpp b/lldb/source/lldb.cpp index e96a878..4afd74e 100644 --- a/lldb/source/lldb.cpp +++ b/lldb/source/lldb.cpp @@ -125,9 +125,7 @@ lldb_private::Initialize () OperatingSystemPython::Initialize(); #endif JITLoaderGDB::Initialize(); -#if defined(__linux__) || defined(__FreeBSD__) ProcessElfCore::Initialize(); -#endif #if defined (__APPLE__) //---------------------------------------------------------------------- @@ -211,9 +209,7 @@ lldb_private::Terminate () OperatingSystemPython::Terminate(); #endif JITLoaderGDB::Terminate(); -#if defined(__linux__) || defined(__FreeBSD__) ProcessElfCore::Terminate(); -#endif #if defined (__APPLE__) DynamicLoaderMacOSXDYLD::Terminate(); -- 2.7.4