当前位置:  开发笔记 > 编程语言 > 正文

编写/使用C++库

如何解决《编写/使用C++库》经验,为你挑选了1个好方法。

我正在寻找基本的示例/教程:

    如何用C++编写/编译库(.soLinux .dll文件,Windows文件).

    如何在其他代码中导入和使用这些库.

wilhelmtell.. 16

代码

r.cc:

#include "t.h"

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

th:

void f();

t.cc:

#include
#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

export如果沿全局库路径安装共享库,则不需要该步骤.



1> wilhelmtell..:

代码

r.cc:

#include "t.h"

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

th:

void f();

t.cc:

#include
#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

export如果沿全局库路径安装共享库,则不需要该步骤.

推荐阅读
谢谢巷议
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有