When we are supposed to use RTLD_DEEPBIND?
问题 I was trying the issue mentioned at link: https://sourceware.org/ml/libc-alpha/2009-06/msg00168.html I did some modification in the code as mentioned below: >> Cat libdep.c #include <stdio.h> int duplicate = 'u'; int get_duplicate() { printf("libdep sees duplicate as: %c\n", duplicate); printf("libdep sees duplicate address as: %x\n", &duplicate); return duplicate; } -------------------------------------------------------------------------------------- >> Cat dynamic.c #include <stdio.h>