gpt4 book ai didi

linux - 在库加载时执行的函数

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:52:57 25 4
gpt4 key购买 nike

我在为 Linux 平台开发共享库方面还很陌生。

是否有一个我可以在 .SO 中定义的函数,它将在 dlopen() 加载库时调用?

最佳答案

如果您使用的是 GCC 或兼容的编译器,您可以使用 __attribute__((constructor)) 声明一个函数,它将在加载时调用。有点像

__attribute__((constructor))
void init()
{
puts("Hello dynamic linkage world!");
}

关于linux - 在库加载时执行的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16813832/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com