篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown gcc make ldconfig等,linux构建工具相关的知识,希望对你有一定的参考价值。
## ldconfig
1. display current libraries from the cache
```
ldconfig -p | head 5
```
2. display libraries from every directory
```
ldconfig -v | head
cat /etc/ld.so.conf
ls -l /etc/ld.so.conf.d/
```
3. infor system about the new libs
```
# if you compiling a lib, use this to inform the system about the new lib.
ldconfig -n /path/to/your/lib
```
## gcc
## make
以上是关于markdown gcc make ldconfig等,linux构建工具的主要内容,如果未能解决你的问题,请参考以下文章