zoukankan      html  css  js  c++  java
  • Linux: Set OR Change The Library Path

    Linux: Set OR Change The Library Path

    by NIX CRAFT on APRIL 9, 2010 · 3 COMMENTS· LAST UPDATED AUGUST 11, 2013

    in GNU C / C++, LINUX, PROGRAMMING

    I've compile and installed a library at /usr/local/lib/libapp2.so -> libapp2.so.1.4.3. How do I set the Library path under Linux operating systems?
    You need to use ldconfig config file and ldconfig command which creates the necessary links and cache to the most recent shared libraries found in the directories specified on the command line, in the file /etc/ld.so.conf, and in the trusted directories such as /lib64 or /usr/lib64 (/lib or /usr/lib on 32 bit systems).

    Tutorial details

    Difficulty
    Intermediate (rss)

    Root privileges
    Yes

    Requirements
    GNU gcc

    Estimated completion time
    10m

    The /etc/ld.so.conf contains lib settings which can be used to add or delete paths. However, you need to simply drop your config file in /etc/ld.so.conf.d/ directory and it will be used by /sbin/ldconfig to configure dynamic linker run time bindings.

    Add Your Path

    Create a file called /etc/ld.so.conf.d/myapp.conf:
    # vi /etc/ld.so.conf.d/myapp.conf
    Add the following path:

    /usr/local/lib

    Save and close the file.

    Activate Your Library Path

    You must run the following command to activate path:
    # ldconfig

    Verify Your New Library Path

    # ldconfig -v | less
    OR
    # ldconfig -v | grep /usr/local/lib
    Sample outputs:

    /usr/local/lib:
            libGeoIP.so.1 -> libGeoIP.so.1.4.6
            libGeoIPUpdate.so.0 -> libGeoIPUpdate.so.0.0.0
    /usr/lib64/mysql:
            libmysqlclient_r.so.15 -> libmysqlclient_r.so.15.0.0
            libmysqlclient.so.15 -> libmysqlclient.so.15.0.0
    /lib:
            libutil.so.1 -> libutil-2.5.so
    

    How Do I Delete The Library Path?

    Simply, delete the file:
    # rm /etc/ld.so.conf.d/myapp.conf
    # ldconfig

    How Do I Edit The Library Path?

    Simply edit the file and reload the changes:
    # vi /etc/ld.so.conf.d/myapp.conf
    # ldconfig

    How Do I Compile Program With Shared Libs And GNU GCC?

    You can use the following gcc
    $ gcc -Wl,-R/path/to/lib -I/path/to/include -L/path/to/lib -o myAppName mycode.c -llibapp2

  • 相关阅读:
    没用完的手机流量是否清零?讨论+吐槽
    南方周末:《系统》
    如何将Excel表批量赋值到ArcGIS属性表
    解决4K屏电脑显示问题
    坐标或测量值超出范围
    快速手工实现软件著作权源码60页制作
    SVN版本更新自动通知提醒
    1130不允许连接到MySql server
    Win10中SVN图标不显示的解决
    注意地理坐标系下的距离和面积计算
  • 原文地址:https://www.cnblogs.com/jjkv3/p/3822152.html
Copyright © 2011-2022 走看看