Skip to content

Commit 0b010ef

Browse files
committed
[lldb] Use PlatformMacOSX for Mac Catalyst
Use PlatformMacOSX for Mac Catalyst apps on both Intel (x86) and Apple Silicon (arm64).
1 parent 772f7b8 commit 0b010ef

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lldb/source/Plugins/Platform/MacOSX/PlatformMacOSX.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,11 @@ std::vector<ArchSpec> PlatformMacOSX::GetSupportedArchitectures() {
144144
// has a 32bits variant.
145145
result.push_back(ArchSpec("x86_64-apple-macosx"));
146146
result.push_back(ArchSpec("x86_64-apple-ios-macabi"));
147+
result.push_back(ArchSpec("arm64-apple-ios-macabi"));
148+
result.push_back(ArchSpec("arm64e-apple-ios-macabi"));
147149
#else
148150
x86GetSupportedArchitectures(result);
151+
result.push_back(ArchSpec("x86_64-apple-ios-macabi"));
149152
#endif
150153
return result;
151154
}

0 commit comments

Comments
 (0)