动态链接库
|
文件: | so_test.rar |
大小: | 0KB |
下载: | 下载 |
|
将库所在的路径设置在 LD_LIBRARY_PATH 环境变量中,或者把生成的库文件拷贝到当前目录下使用。
[root@hdLinux so_test]# cp libtest.so /usr/lib/
[root@hdLinux so_test]# ./test_main
this is in test_a...this is in test_b...this is in test_c...[root@hdLinux so_test]#
[root@hdLinux so_test]# export LD_LIBRARY_PATH=`pwd`
[root@hdLinux so_test]# ./test_main
this is in test_a...this is in test_b...this is in test_c...[root@hdLinux so_test]#
阅读(2412) | 评论(0) | 转发(0) |