交叉编译环境下静态库的制作与测试

2019-04-15 17:09发布

1、编写my_print.c源文件,内容如下: #include void cout(const char * message) {     fprintf(stdout, "%s ", message); } 2、编写my_lib.h头文件,内容如下:
  #ifndef __MY_LIB_H__ #define __MY_LIB_H__ void cout(const char *); #endif 3、编写test_static_lib.c源文件,内容如下:
  #include #include "my_lib.h" int main(int argc, char *argv[]) {     cout("This is a static lib test! ");     return 0; } 4、编译my_print.c源文件:
arm-hisiv500-linux-gcc -c my_print.c        5、归档目标文件,得到静态库。 arm-hisiv500-linux-ar crv libmylib.a my_print.o 6、生成ELF文件:
arm-hisiv500-linux-gcc test_static_lib.c  -L. -lmylib -o test_static_lib 7、将ELF文件拷贝至开发板,执行