0

I know there are many methods to let the executed file load the customized so. such as coping the so to /lib or /usr/lib , export ld_library_path, or modify ld.so.conf.

what's the best or common method to hand the customized so for executed file to load it when deploying production app?

4

2 回答 2

0

你想在lib文件夹上拆分文件吗?

就我而言,我制作了文件夹并将文件放在我的文件夹中。

我设置了这样的目录..

C/C+ --> 附加目录..

我做到了。

"$(ProjectDir)..\Common\Button_src";"$(ProjectDir)..\lib\KLib\";

对不起,我的回答对你的问题很有帮助。

于 2013-10-28T01:14:53.897 回答
0

传统方式(例如由 OpenGL 应用程序或英特尔 MKL 库使用)是定位应在程序启动时使用的库,dlopen然后通过dlsym.

于 2019-05-20T10:34:06.733 回答