这可能会令人尴尬:

我在其他项目中使用库预编排,但无法使此最小示例正常工作:

weakref.h:

void f_weak() __attribute__((weak));


weakref.c:

#include <stdio.h>
#include "weakref.h"

void f_weak(){
    printf("f_weak()\n");
    fflush(stdout);
}


test_weakref.c:

#include <stdio.h>
#include "weakref.h"

int main(void)
{
    if (f_weak) {
        printf("main: f_weak()\n");
    }
    else {
        printf("main: ---\n");
    }

    fflush(stdout);
    return 0;
}


这是我的工作:

$ gcc weakref.c -shared -fPIC -o libweakref.so
$ nm libweakref.so | grep f_weak
0000000000000708 W f_weak
$ gcc test_weakref.c -o test_weakref
$ ./test_weakref
main: ---
$ LD_PRELOAD=./libweakref.so ./test_weakref
main: ---


最后一条命令的预期输出为

main: f_weak()


我想念什么?

最佳答案

据我所知,只有在调用外部函数时,它们才会被解析。因此,您测试(f_weak)是否将始终失败。如果按照以下方式进行操作,则可以看到它的工作原理:

weakref.c:

#include <stdio.h>
#include "weakref.h"

void f_weak(){
   printf("original\n");
   fflush(stdout);
}


weak2.c:

#include <stdio.h>
#include "weakref.h"

void f_weak(){
   printf("overridden\n");
   fflush(stdout);
}


test_weakref.c:

#include <stdio.h>
#include "weakref.h"

int main(void)
{
  f_weak();
  fflush(stdout);
  return 0;
}


接着:

tmp> gcc weakref.c -shared -fPIC -o libweakref.so
tmp> gcc weak2.c -shared -fPIC -o libweak2.so
tmp> gcc -o test_weakref test_weakref.c ./libweakref.so
tmp> ./test_weakref
original
tmp> LD_PRELOAD=./libweak2.so !.
LD_PRELOAD=./libweak2.so ./test_weakref
overridden

08-16 20:31