溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

linux動態(tài)鏈接

發(fā)布時間:2020-08-04 00:10:27 來源:網(wǎng)絡(luò) 閱讀:558 作者:onecan2009 欄目:系統(tǒng)運維

1, 編譯,使用-shared和-fpic 生成動態(tài)鏈接庫
庫源碼:test.c

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

static void printline(int len)
{

    int i;

    for(i = 0;i<len;i++)
    {
        printf("=");        
    }
    printf("\n");
}

void print(char * s)
{   
    int len = 0;
    int  i = 0;
    if(!s || *s == '\0')
    {
        return ;
    }

    len = strlen(s);
    printline(len);
    printf("%s\n",s);
    printline(len);
}

頭文件:test.h

#ifndef __TEST_H__
#define __TEST_H__

void print(char * s);

#endif

編譯庫文件:

gcc test.c -shared -fpic -o libtest.so

2.編譯測試代碼

測試代碼:main.c

#include "test.h"

int main()
{
    char teststr[] = "hello world";

    print(teststr);

    return 0;

}

編譯測試代碼

    gcc  main.c -L./ -ltest -o main

3.運行

當(dāng)運行時,發(fā)現(xiàn)找不到庫文件
./main: error while loading shared libraries: libtest.so: cannot open shared object file: No such file or directory

這個是linux庫文件搜索路徑的問題,有兩個解決方式

  1. 在/etc/ld.so.conf.d/下編寫配置文件,指定庫路徑,然后使用ldconfig去刷新緩存
  2. 在執(zhí)行前設(shè)置環(huán)境變量 LD_LIBRARY_PATH,指定當(dāng)前的路徑,再去執(zhí)行時,則現(xiàn)在本地去搜索
root@GFD:~/workspace/so_test# export LD_LIBRARY_PATH=./
root@GFD:~/workspace/so_test# ./main
===========
hello world
===========
向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI