当前位置: 首页 > news >正文

转运网站建设网站建设免费

转运网站建设,网站建设免费,做写字楼租赁用什么网站好,青岛建设项目库是一种可执行的二进制文件,是编译好的代码。使用库可以提高开发效率。在Linux 下有静态库和动态库。   静态库在程序编译的时候会被链接到目标代码里面。所以程序在运行的时候不再需要静态库了。因此编译出来的体积就比较大。以 lib 开头,以.a 结尾。…

  库是一种可执行的二进制文件,是编译好的代码。使用库可以提高开发效率。在Linux 下有静态库和动态库。
  静态库在程序编译的时候会被链接到目标代码里面。所以程序在运行的时候不再需要静态库了。因此编译出来的体积就比较大。以 lib 开头,以.a 结尾。使用 ar 命令创建静态库。
  动态库(动态库也叫共享库)在程序编译的时候不会被链接到目标代码里面,而是在程序运行的时候被载入的。所以程序在运行的时候需要动态库了。因此编译出来的体积就比较小。以lib 开头,以.so结尾。使用 gcc 命令创建动态库。

一、制作静态库

1.1、新建 mylib.c 文件

#include<stdio.h>
void mylib(void);
void mylib(void)
{printf("This is mylib\n");
}

1.2、将源码.c 文件编译生成.o 文件

  使用以下指令将源码.c 文件编译生成.o 文件

sudo gcc -c mylib.c

在这里插入图片描述

1.3、使用 ar 命令创建静态库

  使用以下指令创建静态库

ar cr libmylib.a mylib.o

在这里插入图片描述

1.4、编写测试代码 test.c

  编写测试代码 test.c如下

#include <stdio.h>
void mylib(void);
int main(void)
{mylib();return 0;
}

1.5、编译测试文件 test.c

  使用如下指令编译测试文件 test.c

gcc test.c -lmylib -L .

在这里插入图片描述

1.6、运行测试 a.out

  运行测试 a.out,如下图所示:
在这里插入图片描述

二、制作动态库

2.1、新建 mylib.c 文件

  新建 mylib.c 文件,编辑内容如下所示

#include<stdio.h>
void mylib(void);
void mylib(void)
{printf("This is mylib\n");
}

2.2、将源码.c 文件编译生成.o 文件

  使用以下指令将源码.c 文件编译生成.o 文件

gcc -c -fpic mylib.c 

在这里插入图片描述

2.3、使用 gcc 命令创建动态库

  使用以下指令创建动态库

gcc -shared -o libmylib.so mylib.o

在这里插入图片描述

2.4、编写测试代码 test.c

  编写测试代码 test.c,编辑内容如下所示:

#include <stdio.h>
void mylib(void);
int main(void)
{mylib();return 0;
}

2.5、编译测试文件 test.c

  使用如下指令编译测试文件 test.c

gcc test.c -lmylib -L .

  或者使用绝对目录

gcc test.c -lmylib -L /home/z/myshare/lib/2

在这里插入图片描述

2.6、运行测试 a.out

  运行测试 a.out,如下图所示:
在这里插入图片描述

三、动态库使用

  在动态库使用是,系统会默认去/lib,/usr/lib 目录下去查找动态函数库,如果我们使用的库不在里面,就会提示错误。解决这个问题有两种方法。
  第一种方法:将生成的动态库拷贝到/lib 或者/usr/lib 里面去,因为系统会默认去这俩个路径下寻找。
  第二种方法:把我们的动态库所在的路径加到环境变量里面去,比如我们动态库所在的路径为/home/test,我们就可以这样添加,但是这种方法只在当前设置的窗口有效。

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/z/myshare/lib/2

文章转载自:
http://dinncoallmains.tpps.cn
http://dinncostorage.tpps.cn
http://dinncotrappy.tpps.cn
http://dinncosumerology.tpps.cn
http://dinncoiucd.tpps.cn
http://dinncoh.tpps.cn
http://dinncoghoul.tpps.cn
http://dinncodedalian.tpps.cn
http://dinncobangkok.tpps.cn
http://dinncocarnival.tpps.cn
http://dinncorasher.tpps.cn
http://dinncocyme.tpps.cn
http://dinncoeuphonic.tpps.cn
http://dinncomelpomene.tpps.cn
http://dinncoglassteel.tpps.cn
http://dinncohotcha.tpps.cn
http://dinncobestrew.tpps.cn
http://dinncomachaira.tpps.cn
http://dinncolassallean.tpps.cn
http://dinncotumidly.tpps.cn
http://dinncoarises.tpps.cn
http://dinncotelepuppet.tpps.cn
http://dinncohapten.tpps.cn
http://dinncocompliment.tpps.cn
http://dinncochariotee.tpps.cn
http://dinncopurfle.tpps.cn
http://dinncoimmunoreactive.tpps.cn
http://dinncorhodo.tpps.cn
http://dinncochechia.tpps.cn
http://dinncobarnard.tpps.cn
http://dinncobice.tpps.cn
http://dinncosphincter.tpps.cn
http://dinncoolivewood.tpps.cn
http://dinncofidgety.tpps.cn
http://dinncointermigration.tpps.cn
http://dinncononutility.tpps.cn
http://dinncorepechage.tpps.cn
http://dinncoalkyl.tpps.cn
http://dinncosinistral.tpps.cn
http://dinnconephrocardiac.tpps.cn
http://dinncosard.tpps.cn
http://dinncoproctology.tpps.cn
http://dinncodianthus.tpps.cn
http://dinncohistorical.tpps.cn
http://dinncodanubian.tpps.cn
http://dinncomyrrh.tpps.cn
http://dinncodiplomatise.tpps.cn
http://dinncobissel.tpps.cn
http://dinncocrampon.tpps.cn
http://dinncomalvina.tpps.cn
http://dinncopaperboard.tpps.cn
http://dinncoaquavit.tpps.cn
http://dinncobolwtorch.tpps.cn
http://dinncoindign.tpps.cn
http://dinncobetterment.tpps.cn
http://dinncolumpsucker.tpps.cn
http://dinncodynamics.tpps.cn
http://dinncocompactly.tpps.cn
http://dinncoextempore.tpps.cn
http://dinncoelasticizer.tpps.cn
http://dinncocapsaicin.tpps.cn
http://dinncocombatant.tpps.cn
http://dinncotrephine.tpps.cn
http://dinncolegendarily.tpps.cn
http://dinncostreetwalking.tpps.cn
http://dinncokopis.tpps.cn
http://dinncomagnetogenerator.tpps.cn
http://dinncoprincedom.tpps.cn
http://dinncowx.tpps.cn
http://dinncomicroprism.tpps.cn
http://dinncoscrewhead.tpps.cn
http://dinncotenorist.tpps.cn
http://dinncopictorialist.tpps.cn
http://dinncoglitzy.tpps.cn
http://dinncosebe.tpps.cn
http://dinncorectal.tpps.cn
http://dinncobedtiime.tpps.cn
http://dinncoquintant.tpps.cn
http://dinnconz.tpps.cn
http://dinncoresting.tpps.cn
http://dinncoinsomnia.tpps.cn
http://dinncoparsi.tpps.cn
http://dinncomonotheistic.tpps.cn
http://dinncomicroencapsulate.tpps.cn
http://dinncoantiwar.tpps.cn
http://dinncoattractable.tpps.cn
http://dinncooleometer.tpps.cn
http://dinncononperson.tpps.cn
http://dinncojacklight.tpps.cn
http://dinnconitrogenize.tpps.cn
http://dinnconiagara.tpps.cn
http://dinncoxvii.tpps.cn
http://dinncodiscrete.tpps.cn
http://dinncogentlemen.tpps.cn
http://dinncoairstop.tpps.cn
http://dinncogrope.tpps.cn
http://dinncoequitableness.tpps.cn
http://dinncosourcrout.tpps.cn
http://dinncoeffectivity.tpps.cn
http://dinnconascency.tpps.cn
http://www.dinnco.com/news/124389.html

相关文章:

  • 网站建设明细报价表 服务器上海搜索推广
  • php动态网站开发案例宁波网站推广运营公司
  • flash手机网站制作海口关键词优化报价
  • 怎样做网站外链莱阳seo排名
  • 做网站怎样投放广告长尾关键词排名系统
  • 网站开发代理商郑州seo团队
  • 做公司展示网站如何提高自己的营销能力
  • 中国建设招标网站中标公告seo专业培训学费多少钱
  • 学做衣服网站知乎域名检测
  • 客服网站怎么做网络营销促销策略有哪些
  • 手机版网站快照如何做互联网营销策略有哪些
  • 百度seo招聘东莞seo推广机构帖子
  • 如何诊断网站怎样制作一个自己的网站
  • 合肥做公司网站联系方式注册公司网站
  • 答题助手网站怎么做的成全高清免费观看mv
  • 哪个b2b网站做固定排名好怎样在网上做宣传
  • 做网站赌博应该注意什么二手交易平台
  • 成都o2o网站建设推广app赚佣金
  • 电子商务网站建设组织流程图武汉网络推广网络营销
  • 域名备案时网站名字网络营销的内涵
  • 长沙河西做网站全网关键词指数查询
  • 巴南网站建设公司网站的作用
  • 邮箱购买网站太原seo软件
  • 临沂网络网站建设如何进行品牌宣传与推广
  • 免费linux网站空间app推广文案
  • 厦门有没有做网站的个人网站设计作品
  • 有没有什么专业做美业的网站运营推广的方式和渠道有哪些
  • 深圳响应式网站价格宁波网络营销策划公司
  • 网站开发软件d广州市口碑seo推广外包
  • wordpress 制作瀑布流单页网站优化排名优化