12 2018 档案
嵌入式学习网站
摘要:c/c++: http://c.biancheng.net/ shell/db/c/c++:在线编辑学习 http://www.tutorialspoint.com/ 阅读全文
posted @ 2018-12-29 15:09 Malphite 阅读(398) 评论(0) 推荐(0)
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个 方 阅读全文
posted @ 2018-12-18 15:04 Malphite 阅读(310) 评论(0) 推荐(0)
C++ 第九天
摘要:day09#include <iostream>using namespace std;class A{ public: virtual void fooa(int x){ cout << "fooa(int)" << endl; cout << x << endl; } virtual void 阅读全文
posted @ 2018-12-02 14:42 Malphite 阅读(196) 评论(0) 推荐(0)