摘要:
我在使用海思硬件接口的时候,用到了mpi库,然后Makefile里面链接了这个库,但是编译到了链接的时候报错了: ./lib//libmpi.so: undefined reference to `sem_post' ./lib//libmpi.so: undefined reference to 阅读全文
摘要:
这个上网搜索多数是英文的,然后我找到了一篇中文的,他讲的正是关键点:编译命令(gcc/g++)加了-c参数,比如我的 CC = arm-himix200-linux-gcc CCFLAGS = -Wall -O -g INCLUDE = -I ./include # 可执行文件的名字 TARGET 阅读全文
摘要:
按 Press功能 Function Ctrl + Shift + P,F1 显示命令面板 Show Command Palette Ctrl + P 快速打开 Quick Open Ctrl + Shift + N 新窗口/实例 New window/instance Ctrl + Shift + 阅读全文
摘要:
readelf strings nm ldd export PATH LD_LIBRARY_PATH Idconfig source 阅读全文
摘要:
问题 : ubuntu:18.04版本,交叉编译代码报错 arm-linux-gnueabihf-g++: error trying to exec 'cc1plus': execvp: No such file or directory 解决方案:可以看到我这里是交叉编译工具,类似的这种情况可以看 阅读全文
摘要:
1. ffmpeg转换图片格式 ffmpeg -i fall01.jpg -s 290*220 -pix_fmt nv12 fall01_w290_h220.yuv 注:-i 输入图片 -s 输出图片大小 -pix_fmt 输出像素格式 (yuv420p、yuyv422、rgb24、bgr24、yu 阅读全文
摘要:
远程使用图形化界面时出错:MoTTY X11 proxy: Unsupported authorisation protocol 普通用户报错,root用户不报错的解决方法:cp /root/.Xauthority /home/xxx/ 普通用户不报错,root用户报错的解决方法: cp /home 阅读全文
摘要:
1. export 设置或显示系统环境变量 补充说明 export命令 用于将shell变量输出为环境变量,或者将shell函数输出为环境变量。 一个变量创建时,它不会自动地为在它之后创建的shell进程所知。而命令export可以向后面的shell传递变量的值。当一个shell脚本调用并执 行时, 阅读全文
摘要:
4.4.3 The Function wildcard Wildcard expansion happens automatically in rules. But wildcard expansion does not normally take place when a variable is 阅读全文
摘要:
链接:https://www.zhihu.com/question/265637582/answer/303612042 首先讲讲语法:不是“函数外边包一层extern "C" {....}”这样子。你只需要在函数的声明上面加一个extern "C"就行了,如果有多个函数需要声明,就再加个{}一起搞 阅读全文