
This reverts commit df054499c35cdda02b196b2ca5c0a326abdc0a29. Reverting because of build errors In file included from /Users/buildslave/jenkins/workspace/as-lldb-cmake/llvm-project/lldb/source/API/SBPlatform.cpp:19: /Users/buildslave/jenkins/workspace/as-lldb-cmake/llvm-project/lldb/include/lldb/Target/Target.h:1035:18: warning: parameter 'merged' not found in the function declaration [-Wdocumentation]
14 lines
384 B
C
14 lines
384 B
C
// aarch64-linux-android29-clang -shared -Os -glldb -g3 -Wl,--build-id=sha1 \
|
|
// AndroidModule.c -o AndroidModule.so
|
|
// dump_syms AndroidModule.so > AndroidModule.so.sym
|
|
// cp AndroidModule.so AndroidModule.unstripped.so
|
|
// llvm-strip --strip-unneeded AndroidModule.so
|
|
|
|
int boom(void) {
|
|
return 47;
|
|
}
|
|
|
|
__attribute__((visibility("hidden"))) int boom_hidden(void) {
|
|
return 48;
|
|
}
|