
Linux
linux学习经验总结
Embedded engineer
生命不息,学习不止!
展开
-
(2)Posix IPC
Unix/Linux进程间通信之Posix IPC介绍原创 2020-01-14 13:39:46 · 231 阅读 · 0 评论 -
(1)IPC简介
Unix/Linux进程间通信IPC简介原创 2020-01-13 18:00:56 · 2647 阅读 · 0 评论 -
libcurl移植并支持ssl
libcurl交叉编译并支持SSL原创 2019-11-20 17:54:11 · 950 阅读 · 0 评论 -
linux下链接so提示skipping incompatible ../bin/xxx.so when searching for -lxxx
问题原因:so库编译时使用的操作位数与当前操作系统位数不一致。原因确认:查看当前系统位数:shell下输入命令: getconf LONG_BIT,输出结果表示当前操作系统位数。查看编译so文件时系统位数:在shell中进入so文件所在目录,输入命令:readelf -h xxx.so从输出结果Class一栏中可以看到ELF32,该库文件是在32位系统环境下编译的。...原创 2019-06-12 14:13:06 · 12879 阅读 · 5 评论 -
linux下执行程序提示error while loading shared libraries: xxx.so: cannot open shared object file...
在linux执行连接了.so库的可执行程序时,如果未将so文件放入系统指定的so搜索路径下,运行程序时会提示找不到对应的so库。输出如下错误信息:./sdkdemo: error while loading shared libraries: xxx.so: cannot open shared object file: No such file or directory解决方法如下:...原创 2019-06-12 14:28:08 · 9882 阅读 · 1 评论