diff options
author | Greg Clayton <gclayton@apple.com> | 2012-03-20 18:34:04 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2012-03-20 18:34:04 +0000 |
commit | b3a40ba812cde1ab2571754a97d19215645271ff (patch) | |
tree | 2009e24d3e69bb5dc099eee6845a9220a24d3593 /lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.h | |
parent | 5a6011267adb5770cde18c7807b64baccd7587ad (diff) | |
download | bcm5719-llvm-b3a40ba812cde1ab2571754a97d19215645271ff.tar.gz bcm5719-llvm-b3a40ba812cde1ab2571754a97d19215645271ff.zip |
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.
llvm-svn: 153104
Diffstat (limited to 'lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.h')
-rw-r--r-- | lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.h b/lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.h index d0986428018..3973c2f515b 100644 --- a/lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.h +++ b/lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.h @@ -24,7 +24,7 @@ public: // Class Functions //------------------------------------------------------------ static lldb_private::Platform* - CreateInstance (); + CreateInstance (bool force, const lldb_private::ArchSpec *arch); static void Initialize (); |