forked from OSchip/llvm-project
Revert r154086. It may be needed for Darwin. But the symbols are still missing in the dylib.
llvm-svn: 154108
This commit is contained in:
parent
0881092306
commit
e50ab408e5
|
@ -101,6 +101,7 @@ lldb_private::Initialize ()
|
|||
UnwindAssembly_x86::Initialize();
|
||||
EmulateInstructionARM::Initialize ();
|
||||
ObjectFilePECOFF::Initialize ();
|
||||
DynamicLoaderPOSIXDYLD::Initialize ();
|
||||
PlatformFreeBSD::Initialize();
|
||||
PlatformLinux::Initialize();
|
||||
#if defined (__APPLE__)
|
||||
|
@ -123,8 +124,6 @@ lldb_private::Initialize ()
|
|||
PlatformRemoteiOS::Initialize();
|
||||
PlatformMacOSX::Initialize();
|
||||
PlatformiOSSimulator::Initialize();
|
||||
#else
|
||||
DynamicLoaderPOSIXDYLD::Initialize ();
|
||||
#endif
|
||||
#if defined (__linux__)
|
||||
//----------------------------------------------------------------------
|
||||
|
@ -178,6 +177,7 @@ lldb_private::Terminate ()
|
|||
UnwindAssemblyInstEmulation::Terminate();
|
||||
EmulateInstructionARM::Terminate ();
|
||||
ObjectFilePECOFF::Terminate ();
|
||||
DynamicLoaderPOSIXDYLD::Terminate ();
|
||||
PlatformFreeBSD::Terminate();
|
||||
PlatformLinux::Terminate();
|
||||
#if defined (__APPLE__)
|
||||
|
@ -197,8 +197,6 @@ lldb_private::Terminate ()
|
|||
PlatformMacOSX::Terminate();
|
||||
PlatformRemoteiOS::Terminate();
|
||||
PlatformiOSSimulator::Terminate();
|
||||
#else
|
||||
DynamicLoaderPOSIXDYLD::Terminate ();
|
||||
#endif
|
||||
|
||||
Debugger::SettingsTerminate ();
|
||||
|
|
Loading…
Reference in New Issue