Files
clang-p2996/lldb/test/API/macosx/macCatalystAppMacOSFramework/main.c
Adrian Prantl 7e9bab6ad5 Fix debugserver's qProcessInfo reporting of maccatalyst binaries
This patch is similar in spirit to https://reviews.llvm.org/D84480,
but does the maccatalyst/macosx disambiguation. I also took the
opportunity to factor out the gdb-remote packet log scanning used by
several testcases into lldbutil functions.

rdar://problem/66059257

Differential Revision: https://reviews.llvm.org/D84576
2020-08-04 16:42:14 -07:00

6 lines
102 B
C

#include "foo.h"
int main() {
const char *s = "Hello macCatalyst!";
return foo(); // break here
}