摘要: 明明已经添加到/etc/environment 安装sudo apt-get install lib32z1 lib32ncurses5 阅读全文
posted @ 2019-05-05 23:50 MoonXu 阅读(204) 评论(0) 推荐(0)
摘要: locate arm-none-linux-gnueabi-gcc//有效 find / -name "arm-none-linux-gnueabi-gcc" 阅读全文
posted @ 2019-05-05 21:31 MoonXu 阅读(201) 评论(0) 推荐(0)
摘要: g++ main.c math.cpp math.h中加入extern "C" 阅读全文
posted @ 2019-05-05 17:10 MoonXu 阅读(148) 评论(0) 推荐(0)
摘要: math.c使用c语言写的main.cpp是c++写的。 gcc -c math.c生成math.o ar -r librmath.a *.o//把math.o打包成静态库rmath.a g++ main.cpp -L./ -lrmath -L静态库路径 -l静态库名字 在math.h中加入exte 阅读全文
posted @ 2019-05-05 16:50 MoonXu 阅读(8435) 评论(0) 推荐(0)