linux共享库so的使用方法

44 篇文章 0 订阅

so_test.h:

#include <stdio.h>
#include <stdlib.h>
void test_a();
void test_b();
void test_c();

test_a.c:

#include "so_test.h"
void test_a()
{
    printf("this is in test_a...\n");
}

test_b.c:

#include "so_test.h"
void test_b()
{
    printf("this is in test_b...\n");
}

test_c.c:

#include "so_test.h"
void test_c()
{
    printf("this is in test_c...\n");
}


run.sh

#!/bin/sh

echo $LD_LIBRARY_PATH
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:.      导入共享库到环境变量中,一次性的。
echo $LD_LIBRARY_PATH
gcc test_a.c test_b.c test_c.c -fPIC -shared -o libtest.so    生成共享库
gcc test.c -o test libtest.so                使用共享库
ldd ./test                                           显示程序链接的共享库

./test


Makefile 文件

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:./ipp64so:.
all: tsd_silence


CC = g++
#CFLAGS = -g -Wall -ansi
INCLUDE = -I./ -I./IPP6EM64/include/
IPPLIB = -L./ipp64so/ -L.
THREAD = -lpthread
tsd_silence: tsd_silence.o voicedetect.o CPcm.o TSD_API.so
        $(CC) $(IPPLIB) $(THREAD)  tsd_silence.o voicedetect.o CPcm.o  TSD_API.so -o tsd_silence 
tsd_silence.o: tsd_silence.c voicedetect.h
        $(CC) $(INCLUDE) -c tsd_silence.c 
voicedetect.o: voicedetect.c voicedetect.h
        $(CC) $(INCLUDE) -c voicedetect.c 
CPcm.o: CPcm.c CPcm.h types.h
        $(CC) $(INCLUDE) -c CPcm.c 
clean:
        rm -rf *.o tsd_silence

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值