当前位置:网站首页>/Bin/ld: cannot find -lxslt
/Bin/ld: cannot find -lxslt
2022-07-02 15:47:00 【Six element】
Catalog
scene
When we compile and install a source package , Re execution configure Sometimes because the library file cannot be found , An error is as follows :
[[email protected] ~]# ./configure
/bin/ld: Can't find -lxsltProblems arise
/bin/ld: Can't find -lxslt
Problem analysis
Because compilation needs to use lib The library files , But because there is no file index relationship , As a result, the library file cannot be searched , To report a mistake .
resolvent
By using locate Load library file , Create index relationship , to update lib library , To solve this problem .
First , Load library file , Create index relationship
[[email protected] ~]# locate libxslt
/usr/lib64/libxslt-plugins
/usr/lib64/libxslt.so.1
/usr/lib64/libxslt.so.1.1.28
/usr/share/doc/libxslt-1.1.28
/usr/share/doc/libxslt-1.1.28/AUTHORS
/usr/share/doc/libxslt-1.1.28/ChangeLog.gz
/usr/share/doc/libxslt-1.1.28/Copyright
/usr/share/doc/libxslt-1.1.28/FEATURES
/usr/share/doc/libxslt-1.1.28/NEWS
/usr/share/doc/libxslt-1.1.28/READMEthen , Create a library file soft link
[[email protected] ~]# ln -s /usr/lib64/libxslt.so.1 /usr/lib/libxslt.soafter , Compile and execute again configure that will do
[[email protected] ~]# ./configure边栏推荐
猜你喜欢

【Salesforce】如何确认你的Salesforce版本?

《大学“电路分析基础”课程实验合集.实验五》丨线性有源二端网络等效电路的研究

Finally, I understand the event loop, synchronous / asynchronous, micro task / macro task, and operation mechanism in JS (with test questions attached)

Soul torture, what is AQS???

2022 年辽宁省大学生数学建模A、B、C题(相关论文及模型程序代码网盘下载)

PostgresSQL 流复制 主备切换 主库无读写宕机场景

Thoroughly understand browser strong cache and negotiation cache

Why does the system convert the temp environment variable to a short file name?

《大学“电路分析基础”课程实验合集.实验六》丨典型信号的观察与测量

The outline dimension function application of small motherboard
随机推荐
[idea] recommend an idea translation plug-in: translation "suggestions collection"
/bin/ld: 找不到 -lxml2
PyObject 转 char* (string)
2022 年辽宁省大学生数学建模A、B、C题(相关论文及模型程序代码网盘下载)
Redux——详解
/bin/ld: 找不到 -lcrypto
SQL FOREIGN KEY
【Experience Cloud】如何在VsCode中取得Experience Cloud的MetaData
【LeetCode】876-链表的中间结点
【LeetCode】977-有序数组的平方
ssh/scp 使不提示 All activities are monitored and reported.
Two traversal sequences are known to construct binary trees
Use ffmpeg command line to push UDP and RTP streams (H264 and TS), and ffplay receives
/bin/ld: 找不到 -lpam
《大学“电路分析基础”课程实验合集.实验七》丨正弦稳态电路的研究
Demo of converting point cloud coordinates to world coordinates
[leetcode] 977 - carré du tableau ordonné
PHP static members
(4) Flink's table API and SQL table schema
终于搞懂了JS中的事件循环,同步/异步,微任务/宏任务,运行机制(附笔试题)