zoukankan      html  css  js  c++  java
  • 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


  • 相关阅读:
    Js 30 BOM
    js面向对象
    js模态窗口
    js默认行为(也称默认事件)
    框架的控件隐藏
    20150706 js之定时器
    sublime快捷方式和node.js
    js回调函数2
    Hibernate 多对一
    Hibernate入门之配置文件
  • 原文地址:https://www.cnblogs.com/zi-xing/p/7291351.html
Copyright © 2011-2022 走看看