免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 6996 | 回复: 3
打印 上一主题 下一主题

LD_LIBRARY_PATH在程序运行时用setenv修改,如何生效 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-05-30 13:41 |只看该作者 |倒序浏览
大家好:
小弟现在有这样一个需求,我们的程序运行时会依赖一些so动态库文件,为了尽量实现绿色化,不想把依赖的so放入/usr/lib或用户的$HOME/lib下,想通过运行时修改LD_LIBRARY_PATH来实现,写了个测试代码,setenv之后,调用getenv确是把值修改了. 但是加载so 仍然失败.
在shell里,可以使用export LD_LIBRARY之类的东东,使得当前进程和子进程等生效了.
不知代码如何实现这样的功能.
以下我的测试代码.

  1. #include <stdlib.h>
  2. #include <dlfcn.h>
  3. #include <stdio.h>
  4. #include <string.h>

  5. int loadso(const char* file)
  6. {
  7.         void* h = dlopen(file, RTLD_LAZY);
  8.         if (NULL != h)
  9.         {
  10.                 fprintf(stdout, "load file %s Ok, handle=%p\n", file, h);
  11.                 dlclose(h);
  12.         }
  13.         else
  14.         {
  15.                 fprintf(stdout, "load file %s failed, err=%s\n", file, dlerror() );
  16.         }
  17.         return 0;
  18. }

  19. int main(int argc, char* argv[])
  20. {
  21.         const char* so_name = "libfoo.so";
  22.         const char* so_dir = "/home/extend/test/libs";

  23.         char ld_path[1024] = {0};
  24.         const char* psz_ld_path = getenv("LD_LIBRARY_PATH");
  25.         const char* psz_path = getenv("PATH");
  26.         if (psz_ld_path != NULL)
  27.                 strcpy(ld_path, psz_ld_path);
  28.         sprintf(ld_path + strlen(ld_path), ":%s", so_dir);
  29.         fprintf(stdout, "org: ld_path = %s\n", psz_ld_path);
  30.         loadso(so_name);

  31.         setenv("LD_LIBRARY_PATH", ld_path, 1);
  32.         psz_ld_path = getenv("LD_LIBRARY_PATH");
  33.         fprintf(stdout, "new: ld_path = %s\n", psz_ld_path);
  34.         loadso(so_name);
  35.         return 0;
  36. }
复制代码

论坛徽章:
0
2 [报告]
发表于 2013-06-17 16:43 |只看该作者
你解决了吗?我有同样的问题。

论坛徽章:
4
白羊座
日期:2013-09-17 21:59:30技术图书徽章
日期:2013-10-12 22:16:03白羊座
日期:2013-10-14 11:01:40双子座
日期:2013-12-17 18:26:39
3 [报告]
发表于 2013-06-17 18:28 |只看该作者

论坛徽章:
0
4 [报告]
发表于 2015-04-02 11:19 |只看该作者
动态更换LD_LIBRARY_PATH貌似是不行了,但是可以用chdir动态改变当前工作路径来解决。(LD_LIBRARY_PATH可以带上当前路径".",需要被依赖的地方就cd过去)。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP