码迷,mamicode.com
首页 > 其他好文 > 详细

so库文件控制导出符号

时间:2018-07-14 14:40:53      阅读:374      评论:0      收藏:0      [点我收藏+]

标签:输出   att   dll   限制   而在   需要   color   port   attribute   

在Windows下生成DLL时,可以使用dll_export来将需要对外的符号导出来。

__declspec(dllimport)

而在Linux中,默认是所有的符号都是导出的,只有使用了相应的attribute才能将不想导出的(库内部使用的)的符号隐藏起来。

__attribute__((visibility("hidden"))) 

下面来对比一下,前面一段是默认的输出,后面一段是在类前添加了hidden限制的输出:
技术分享图片

so库文件控制导出符号

标签:输出   att   dll   限制   而在   需要   color   port   attribute   

原文地址:http://blog.51cto.com/13808390/2142096

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!