屏蔽静态库接口

文章目录

    • 准备
    • 编译
    • 链接
    • 去除无用的符号
    • 隐藏的符号本地化(我也不知道中文怎么翻译了)
    • 打包成静态库
    • 验证
      • 调用未被隐藏的`hello()`
      • 调用隐藏的`bye()`

分享屏蔽静态库接口的一种方法.

准备

hello.c:

#include 

__attribute__ ((visibility ("default"))) void hello() {
	printf("Hello World!\n");
}

hello.h:

#ifndef __HELLO__H
#define __HELLO__H

#ifdef __cplusplus
extern "C" {
#endif

void hello();

#ifdef __cplusplus
}
#endif

#endif

bye.c:

#include 

void bye() {
	printf("Bye Bye!\n");
}

bye.h:

#ifndef __BYE__H
#define __BYE__H

#ifdef __cplusplus
extern "C" {
#endif

void bye();

#ifdef __cplusplus
}
#endif

#endif

编译

编译时使用-fvisibility=hidden,可以默认将符号隐藏;需要对外的符号使用__attribute__ ((visibility ("default")))修饰即可:

$ gcc -fvisibility=hidden -I. -c hello.c -o hello.o
$ gcc -fvisibility=hidden -I. -c bye.c -o bye.o

其中hello()未被隐藏,bye()是被隐藏的.

链接

将生成的两个.o文件重定位到libt.o中:

$ ld -r hello.o bye.o -o libt.o

去除无用的符号

$ strip --strip-unneeded libt.o

隐藏的符号本地化(我也不知道中文怎么翻译了)

$ objcopy --localize-hidden libt.o libt_hidden.o

打包成静态库

$ ar crv libt.a libt_hidden.o

验证

调用未被隐藏的hello()

test1.c:

#include "hello.h"

int main(void) {
    hello();
    return 0;
}

编译并运行

$ gcc -I. test1.c -L. -lt -o test
$ ./test
Hello World!

调用隐藏的bye()

test2.c

#include "bye.h"

int main(void) {
    bye();
    return 0;
}

编译并运行

$ gcc -I. test2.c -L. -lt -o test
$ ./test
/tmp/ccdaJT7s.o: In function `main':
test2.c:(.text+0xa): undefined reference to `bye'
collect2: error: ld returned 1 exit status

微信公众号同步更新,微信搜索"AnSwEr不是答案"或者扫描二维码,即可订阅。

在这里插入图片描述

  • GitHub:AnSwErYWJ
  • Blog:http://www.answerywj.com
  • Email:[email protected]
  • Weibo:@AnSwEr不是答案

你可能感兴趣的:(编译原理学习)