软硬链接:
区别:有无inode
动态库和静态库
静态库 .a
将 .o文件打包成 lib_.a文件
- 1、站在制作库工程师角度
- 2、站在使用者角度使用动态库
建立动态库:
[LHL@VM-8-7-centos lesson24]$ vim mymath.c
[LHL@VM-8-7-centos lesson24]$ gcc -fPIC -c mymath.c -o mymath.o
[LHL@VM-8-7-centos lesson24]$ gcc -fPIC -c myprint.c -o myprint.o
[LHL@VM-8-7-centos lesson24]$ readlf -S mymath.o
-bash: readlf: command not found
[LHL@VM-8-7-centos lesson24]$ readIf -S mymath.o
-bash: readIf: command not found
[LHL@VM-8-7-centos lesson24]$ readelf -S mymath.o
There are 11 section headers, starting at offset 0x238:Section Headers:[Nr] Name Type Address OffsetSize EntSize Flags Link Info Align[ 0] NULL 0000000000000000 000000000000000000000000 0000000000000000 0 0 0[ 1] .text PROGBITS 0000000000000000 000000400000000000000030 0000000000000000 AX 0 0 1[ 2] .data PROGBITS 0000000000000000 000000700000000000000000 0000000000000000 WA 0 0 1[ 3] .bss NOBITS 0000000000000000 000000700000000000000000 0000000000000000 WA 0 0 1[ 4] .comment PROGBITS 0000000000000000 00000070000000000000002e 0000000000000001 MS 0 0 1[ 5] .note.GNU-stack PROGBITS 0000000000000000 0000009e0000000000000000 0000000000000000 0 0 1[ 6] .eh_frame PROGBITS 0000000000000000 000000a00000000000000038 0000000000000000 A 0 0 8[ 7] .rela.eh_frame RELA 0000000000000000 000001c80000000000000018 0000000000000018 I 8 6 8[ 8] .symtab SYMTAB 0000000000000000 000000d800000000000000d8 0000000000000018 9 8 8[ 9] .strtab STRTAB 0000000000000000 000001b00000000000000016 0000000000000000 0 0 1[10] .shstrtab STRTAB 0000000000000000 000001e00000000000000054 0000000000000000 0 0 1
Key to Flags:W (write), A (alloc), X (execute), M (merge), S (strings), I (info),L (link order), O (extra OS processing required), G (group), T (TLS),C (compressed), x (unknown), o (OS specific), E (exclude),l (large), p (processor specific)
[LHL@VM-8-7-centos lesson24]$ gcc -shared myprint.o mymath.o -o libhello.so
[LHL@VM-8-7-centos lesson24]$ ll
total 36
-rwxrwxr-x 1 LHL LHL 8152 Mar 19 10:11 libhello.so
-rw-rw-r-- 1 LHL LHL 330 Mar 19 09:45 Makefile
-rw-rw-r-- 1 LHL LHL 172 Mar 19 10:01 mymath.c
-rw-rw-r-- 1 LHL LHL 75 Mar 19 09:46 mymath.h
-rw-rw-r-- 1 LHL LHL 1272 Mar 19 10:01 mymath.o
-rw-rw-r-- 1 LHL LHL 100 Mar 19 09:46 myprint.c
-rw-rw-r-- 1 LHL LHL 88 Mar 19 09:47 myprint.h
-rw-rw-r-- 1 LHL LHL 1624 Mar 19 10:01 myprint.o
[LHL@VM-8-7-centos lesson24]$
[LHL@VM-8-7-centos lesson24]$ gcc -fPIC -c mymath.c -o mymath.o
[LHL@VM-8-7-centos lesson24]$ gcc -fPIC -c myprint.c -o myprint.o
[LHL@VM-8-7-centos lesson24]$ gcc -shared myprint.o mymath.o -o libhello.so
编写进makefile 文件:
[LHL@VM-8-7-centos makelib]$ make clean
rm -rf *.o *.a *.so output
[LHL@VM-8-7-centos makelib]$ make
gcc -c -fPIC mymath.c -o mymath_d.o
gcc -c -fPIC myprint.c -o myprint_d.o
gcc -shared mymath_d.o myprint_d.o -o libhello.so
gcc -c mymath.c -o mymath.o
gcc -c myprint.c -o myprint.o
ar -rc libhello.a mymath.o myprint.o
[LHL@VM-8-7-centos makelib]$ ll
total 52
drwxrwxr-x 4 LHL LHL 4096 Mar 19 10:36 hello
-rw-rw-r-- 1 LHL LHL 3066 Mar 19 11:25 libhello.a
-rwxrwxr-x 1 LHL LHL 8152 Mar 19 11:25 libhello.so
-rw-rw-r-- 1 LHL LHL 607 Mar 19 10:41 Makefile
-rw-rw-r-- 1 LHL LHL 172 Mar 19 10:01 mymath.c
-rw-rw-r-- 1 LHL LHL 1272 Mar 19 11:25 mymath_d.o
-rw-rw-r-- 1 LHL LHL 75 Mar 19 09:46 mymath.h
-rw-rw-r-- 1 LHL LHL 1272 Mar 19 11:25 mymath.o
-rw-rw-r-- 1 LHL LHL 100 Mar 19 09:46 myprint.c
-rw-rw-r-- 1 LHL LHL 1624 Mar 19 11:25 myprint_d.o
-rw-rw-r-- 1 LHL LHL 88 Mar 19 09:47 myprint.h
-rw-rw-r-- 1 LHL LHL 1576 Mar 19 11:25 myprint.o
[LHL@VM-8-7-centos makelib]$ make out[ut
make: *** No rule to make target `out[ut'. Stop.
[LHL@VM-8-7-centos makelib]$ make output
mkdir -p output/lib
mkdir -p output/include
cp -rf *.h output/include
cp -rf *.a output/lib
cp -rf *.so output/lib
[LHL@VM-8-7-centos makelib]$ tree hello/
hello/
|-- include
| |-- mymath.h
| `-- myprint.h
`-- lib|-- libhello.a`-- libhello.so2 directories, 4 files
[LHL@VM-8-7-centos makelib]$
至此,已经完成代码的打包。
将output包移动或安装到指定的执行路径中。
打包安装包
[LHL@VM-8-7-centos makelib]$ mv output ../uselib
[LHL@VM-8-7-centos makelib]$ cd ..//打包安装包
[LHL@VM-8-7-centos uselib]$ tar czf mylib.tgz output
[LHL@VM-8-7-centos uselib]$ ll
total 12
-rw-rw-r-- 1 LHL LHL 164 Mar 19 11:11 main.c
-rw-rw-r-- 1 LHL LHL 3100 Mar 19 11:37 mylib.tgz
drwxrwxr-x 4 LHL LHL 4096 Mar 19 11:32 output
[LHL@VM-8-7-centos uselib]$ //需要指明头文件位置
[LHL@VM-8-7-centos uselib]$ gcc main.c
main.c:1:21: fatal error: myprint.h: No such file or directory#include "myprint.h"^
compilation terminated.
[LHL@VM-8-7-centos uselib]$ gcc main.c -I output/include[LHL@VM-8-7-centos uselib]$ gcc main.c -I output/include -L output/lib -lhello
[LHL@VM-8-7-centos uselib]$ tree
.
|-- a.out
|-- main.c
|-- mylib.tgz
`-- output|-- include| |-- mymath.h| `-- myprint.h`-- lib|-- libhello.a`-- libhello.so3 directories, 7 files
[LHL@VM-8-7-centos uselib]$
[LHL@VM-8-7-centos uselib]$ gcc main.c -I output/include -L output/lib -lhello
动静库名字相同 默认情况下连接的是动态库,
gcc main.c -I output/include -L output/lib -lhello -static
如果动态库存在,指定静态库
[LHL@VM-8-7-centos uselib]$ gcc main.c -I output/include -L output/lib -lhello -static
[LHL@VM-8-7-centos uselib]$ ll
total 856
-rwxrwxr-x 1 LHL LHL 861344 Mar 19 11:55 a.out
-rw-rw-r-- 1 LHL LHL 164 Mar 19 11:11 main.c
-rw-rw-r-- 1 LHL LHL 3100 Mar 19 11:37 mylib.tgz
drwxrwxr-x 4 LHL LHL 4096 Mar 19 11:32 output
[LHL@VM-8-7-centos uselib]$ ./a.out
hello world[1710820537]
res: 5050
[LHL@VM-8-7-centos uselib]$
为什么要有库???
站在使用库的角度 库的存在可以大大减少我们开发的周期 提高软件的本身的质量。
站在写库人的角度:简单 代码安全
1、 ncurses 字符的界面库 -----centos 7 yum
2、boost 标准准库 里面的好玩的功能
GDB 配置更改没证 没找着地方
进程间通信
进程运行具有独立性:进程间想通信难度较大。
进程间通信的本质:先让不同的进程看到同一份资源(内存空间)。
为什么要进行进程间通信?数据传输、资源共享、通知事件、进程控制。
管道
管道是unix中最古老的进程间通信的形式。
我们把从一个进程连接到另一个进程的一个数据流称为一个管道。
管道特点:只能单向通信。
进程间通信的技术背景:
1、进程是具有独立性的。虚拟地址空间+页表 保证进程运行的独立性(进程内核数据结构+进程的代码和数据结构)
2、进程成本比较高。
进程间通信的本质理解
- 1、进程间通信的前提,首先需要让不同的进程看到同一块“内存”。
- 2、同一块内存不属于任何一个进程而是共享。
进程间通信的标准:
- LInux原生能提供——管道
- systemV ——多进程——单机通信 :共享内存、消息队列、信号量
- posix——多线程——网络通信
管道:
- 分别以读写方式打开同一个问题
- fork()创建子进程
- 双方进程各自关闭自己不需要的文件描述符。
管道特点:
- 管道是
- 具有通过让进程
- 面向字节流
- 基于文件
- 单向通信
3、扩展
进程间通信:先让不同的进程看到同一份资源!
mkfifo namepipe 指定路径内创建管道
unlink name_pipe 删除
[LHL@VM-8-7-centos lesson26]$ mkfifo name_pipe
[LHL@VM-8-7-centos lesson26]$ ll
total 0
prw-rw-r-- 1 LHL LHL 0 Mar 22 09:30 name_pipe
[LHL@VM-8-7-centos lesson26]$ echo "hello word" > name_pipe
-bash: name_pipe: Interrupted system call
[LHL@VM-8-7-centos lesson26]$ echo "hello word" > name_pipe
[LHL@VM-8-7-centos lesson26]$
[LHL@VM-8-7-centos lesson26]$ while :; do echo "hello word" ; sleep 1 ; done > name_pipe[LHL@VM-8-7-centos lesson26]$ cat < name_pipe
hello word[LHL@VM-8-7-centos lesson26]$ unlink name_pipe
[LHL@VM-8-7-centos lesson26]$ ll
total 0
[LHL@VM-8-7-centos lesson26]$ make
g++ -o client client.cc -std=c++11
g++ -o server server.cc -std=c++11
[LHL@VM-8-7-centos lesson26]$ ll
total 52
-rwxrwxr-x 1 LHL LHL 14376 Mar 22 11:28 client
-rw-rw-r-- 1 LHL LHL 422 Mar 22 10:59 client.cc
-rw-rw-r-- 1 LHL LHL 315 Mar 22 11:28 comm.hpp
-rw-rw-r-- 1 LHL LHL 409 Mar 22 11:27 Log.hpp
-rw-rw-r-- 1 LHL LHL 156 Mar 22 09:49 Makefile
-rwxrwxr-x 1 LHL LHL 14504 Mar 22 11:28 server
-rw-rw-r-- 1 LHL LHL 1224 Mar 22 11:27 server.cc
[LHL@VM-8-7-centos lesson26]$ ./server| 1711078131 | Debug | 创建管道文件成功step 1| 1711078139 | Debug | 打开管道文件成功step 2
client say>nihao
client say>chileimw
client say>丁酮
client say>好吧
read end of file,clien quit,server quit too!| 1711078243 | Debug | 关闭管道文件成功step 3| 1711078243 | Debug | 删除管道文件成功step 4
[LHL@VM-8-7-centos lesson26]$ [LHL@VM-8-7-centos lesson26]$ ./client
Please Enter Message Line :> nihao
Please Enter Message Line :> chileimw
Please Enter Message Line :> 丁酮
Please Enter Message Line :> 好吧
Please Enter Message Line :> ^C
[LHL@VM-8-7-centos lesson26]$
共享内存的建立:
共享内存提供者是操作系统。
操作系统要不要管理共享内存?
用户空间:不用经过系统调用,可以直接访问! 双方进程如果要通信,直接进行内存级的读和写。
信号量
- 多个进程看到的一份资源——临界资源
- 进程访问临界资源的代码——临界区
- 只有一个进程进入临界区——互斥