diff options
| author | Jason Molenda <jmolenda@apple.com> | 2014-03-07 23:23:10 +0000 |
|---|---|---|
| committer | Jason Molenda <jmolenda@apple.com> | 2014-03-07 23:23:10 +0000 |
| commit | 790b4e527b8403d2e1e220a7a92ed032538b659b (patch) | |
| tree | f658688de2688b1a085dc9cdc659e035f7b612ca | |
| parent | 887e70786af4a584f714d512074bf6b0989d9d28 (diff) | |
| download | bcm5719-llvm-790b4e527b8403d2e1e220a7a92ed032538b659b.tar.gz bcm5719-llvm-790b4e527b8403d2e1e220a7a92ed032538b659b.zip | |
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
| -rw-r--r-- | lldb/source/lldb.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lldb/source/lldb.cpp b/lldb/source/lldb.cpp index e96a8788056..4afd74e7f54 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(); |

