12 2018 档案
linux 编译链接问题
摘要:-rpath和-rpath-link 假设有3个文件,在同一目录下,有这样的依赖关系 test->liba.so->libd.so 如果编译test的时候这样写 gcc test.c –la warning:libd.so, needed by liba.so not found 解决办法有3个 方
阅读全文
C++ 第九天
摘要:day09#include <iostream>using namespace std;class A{ public: virtual void fooa(int x){ cout << "fooa(int)" << endl; cout << x << endl; } virtual void
阅读全文