1. 首页
  2. 数据库
  3. 其它
  4. 动态库调用静态库示例讲解

动态库调用静态库示例讲解

上传者: 2021-01-31 02:40:51上传 PDF文件 42.72KB 热度 13次
生成动态库: 需要的目标文件得用-fPIC选项生成. 而静态库所需的目标文件可以不用-fPIC选项. 例: 代码如下://///// static.h void static_print(); ///////static.cpp #include #include “static.h” void static_print() { std::cout<<“This is static_print function”<<std::endl; } ////// shared.h void shared_print(); ////// share
用户评论