[Lldb-commits] [lldb] r373510 - [ARM64] XPC services are unsupported on device.
Davide Italiano via lldb-commits
lldb-commits at lists.llvm.org
Wed Oct 2 12:20:24 PDT 2019
Author: davide
Date: Wed Oct 2 12:20:24 2019
New Revision: 373510
URL: http://llvm.org/viewvc/llvm-project?rev=373510&view=rev
Log:
[ARM64] XPC services are unsupported on device.
While around, clean up support for a 8 years old OS.
<rdar://problem/55916729>
Modified:
lldb/trunk/source/Host/macosx/objcxx/Host.mm
Modified: lldb/trunk/source/Host/macosx/objcxx/Host.mm
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Host/macosx/objcxx/Host.mm?rev=373510&r1=373509&r2=373510&view=diff
==============================================================================
--- lldb/trunk/source/Host/macosx/objcxx/Host.mm (original)
+++ lldb/trunk/source/Host/macosx/objcxx/Host.mm Wed Oct 2 12:20:24 2019
@@ -10,8 +10,8 @@
#include <AvailabilityMacros.h>
-#if !defined(MAC_OS_X_VERSION_10_7) || \
- MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_7
+// On device doesn't have supporty for XPC.
+#if defined(__APPLE__) && (defined(__arm64__) || defined(__aarch64__))
#define NO_XPC_SERVICES 1
#endif
More information about the lldb-commits
mailing list