• Can not find -lXXXX


    Description

    I had the error message Can not find -lGL when i run qt qmake long ago. The error message shows me that there was a lib not to be found. At that time, I know the GL lib is one of OpenGl libs. because I didn't use any libs of OPenGL, so I just to modify the Makefile. So it well work. But, The error always shown only the qt pro file modified. because the Makefile will be created when pro file modified. Today, I got some libs are not found. I must to find good way to work it out. like below.

    Ways

    When you get the error message like Can not find -lXXX at you run make the program. You can flow below steps to work it out;

    1. use the linux command locate to find whether install the lib in your linux system;locate libXXX
    2. if not install, you should install them . about how to install them, you can search it from google.
    3. if you install these libs. you just create link file at /usr/lib.like:ln -s /usr/lib/x86_64-linux-gnu/mesa/libXXX.so.1 /usr/lib/libXXX.so
    4. remake to generate Makefile. That all. Good luck!
    5. if you want more information, you can click Reference licks.

    Reference

    cnblogs
    qtcn


  • 相关阅读:
    清理yum源
    XZ压缩
    Linux命令之dot
    calltree查看工程代码中的函数调用关系
    valgrind 打印程序调用树+进行多线程性能分析
    LINUX 性能 测试 优化工具
    TCP/IP(84) 详解
    perf---LINUX内核研究
    廖雪锋笔记3:类型转换
    廖雪锋笔记2:list,tuble
  • 原文地址:https://www.cnblogs.com/zi-xing/p/7291351.html
Copyright © 2020-2023  润新知