编写/使用C库

前端之家收集整理的这篇文章主要介绍了编写/使用C库前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在寻找基本的例子/教程:

>如何在C(.so文件Linux,.dll文件为Windows)中编写/编译库.
>如何在其他代码中导入和使用这些库.

解决方法

代码

r.cc:

#include "t.h"

int main()
{
    f();
    return 0;
}

t.h:

void f();

t.cc:

#include<iostream>
#include "t.h"    

void f()
{
    std::cout << "OH HAI.  I'M F." << std::endl;
}

但是怎么样,怎么样呢?

~$g++ -fpic -c t.cc          # get t.o
~$g++ -shared -o t.so t.o    # get t.so
~$export LD_LIBRARY_PATH="." # make sure t.so is found when dynamically linked
~$g++ r.cc t.so              # get an executable

如果在全局库路径中的某个地方安装共享库,则不需要导出步骤.

原文链接:https://www.f2er.com/c/113524.html

猜你在找的C&C++相关文章