Chinaunix首页 | 论坛 | 博客
  • 博客访问: 403440
  • 博文数量: 42
  • 博客积分: 1030
  • 博客等级: 准尉
  • 技术积分: 816
  • 用 户 组: 普通用户
  • 注册时间: 2012-02-06 17:16
文章分类

全部博文(42)

文章存档

2013年(1)

2012年(41)

发布时间:2013-02-20 10:54:39

使用Python 打印出文件依赖的动态链接库#ldd.pyimport subprocessimport sysimport osdef ldd(filename):global libslibs = [] for x in filename:p = subprocess.Popen(["ldd", x], stdout=subprocess.PIPE,stderr=subprocess.PIPE)result = p.stdout.readlines()for x in result.........【阅读全文】

阅读(4329) | 评论(0) | 转发(0)

发布时间:2012-12-05 12:14:17

......【阅读全文】

阅读(5432) | 评论(0) | 转发(1)

发布时间:2012-12-05 10:39:36

......【阅读全文】

阅读(11632) | 评论(0) | 转发(0)

发布时间:2012-11-30 11:08:04

使用SWIG封装C/C++模块作为Python扩展......【阅读全文】

阅读(2645) | 评论(0) | 转发(0)

发布时间:2012-03-27 14:19:31

......【阅读全文】

阅读(13003) | 评论(1) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册