diff options
-rw-r--r-- | lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulatorCoreSimulatorSupport.mm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulatorCoreSimulatorSupport.mm b/lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulatorCoreSimulatorSupport.mm index be2a33a97ad..f83fcf0c575 100644 --- a/lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulatorCoreSimulatorSupport.mm +++ b/lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulatorCoreSimulatorSupport.mm @@ -9,6 +9,8 @@ #include "PlatformiOSSimulatorCoreSimulatorSupport.h" +#if defined (__APPLE__) // This Plugin uses the Mac-specific source/Host/macosx/cfcpp utilities + // C Includes // C++ Includes // Other libraries and framework includes @@ -771,3 +773,5 @@ CoreSimulatorSupport::DeviceSet::GetFanciest (CoreSimulatorSupport::DeviceType:: return dev; } + +#endif // __APPLE__ |