mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-08 10:06:06 +00:00

Now -shlib flag can be provided alongside with names of symbols files: (lldb) target symbols add --shlib stripper-lib.so unstripper-lib.so This is helpful when default matching mechanisms by name and UUID can't find a module, and the user needs to explicitly specify which module the given symbol file belongs to. Differential Revision: https://reviews.llvm.org/D35607 llvm-svn: 308933
7 lines
105 B
C
7 lines
105 B
C
#include <stdio.h>
|
|
static int var = 5;
|
|
int main() {
|
|
printf("%p is %d\n", &var, var);
|
|
return ++var;
|
|
}
|