我在 OS X 和 Android 之间遇到了不同的行为:
- 我的共享库中有一个弱功能
foo
, - 我想用我的可执行文件中定义的强大功能覆盖它。
- 我希望被覆盖的也会影响库内的调用
结果:我在 OS X 上得到了预期的结果,但在 Android 上失败了。
这是我的测试项目:
文件:shared.h
void library_call_foo();
void __attribute__((weak)) foo();
文件:shared.c
#include "shared.h"
#include <stdio.h>
void library_call_foo()
{
printf("shared library call foo -> ");
foo();
}
void foo()
{
printf("weak foo in library\n");
}
文件:main.c
#include <stdio.h>
#include <shared.h>
void foo()
{
printf("strong foo in main\n");
}
int main()
{
library_call_foo();
printf("main call foo -> ");
foo();
return 0;
}
我在 OS X 中编译并运行它使用命令:
clang -shared -fPIC -o libshared.so shared.c
clang -I. -L. -lshared -o test main.c
./test
正如我预期的那样返回结果:
shared library call foo -> strong foo in main
main call foo -> strong foo in main
但是当我使用 NDK 工具链为 Android 编译它时,使用相同的命令:
arm-linux-androideabi-clang -shared -fPIC -o libshared.so shared.c
arm-linux-androideabi-clang -I. -L. -lshared -o test main.c
并在设备上运行它,我得到了不同的结果:
shared library call foo -> weak foo in library
main call foo -> strong foo in main
为什么行为不同,我该如何解决?