Platforms can now auto-select themselves if you specify a full target triple when doing a "target create" command.

Each platform now knows if it can handle an architecture and a platform can be found using an architecture. Each platform can look at the arch, vendor and OS and know if it should be used or not.



git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@153104 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/lldb.cpp b/source/lldb.cpp
index 3c7b768..fb377b2 100644
--- a/source/lldb.cpp
+++ b/source/lldb.cpp
@@ -126,8 +126,8 @@
         ProcessGDBRemote::Initialize();
         ProcessMachCore::Initialize();
         SymbolVendorMacOSX::Initialize();
-        PlatformMacOSX::Initialize();
         PlatformRemoteiOS::Initialize();
+        PlatformMacOSX::Initialize();
         PlatformiOSSimulator::Initialize();
 #endif
 #if defined (__linux__)