摘要:
strace命令详解strace 命令是一种强大的工具,它能够显示所有由用户空间程序发出的系统调用。 strace 显示这些调用的参数并返回符号形式的值。strace 从内核接收信息,而且不需要以任何特殊的方式来构建内核。 下面记录几个常用 option . 1 -f -F选项告诉strace... 阅读全文
摘要:
./configure --prefix="/root/code/install/x86" CPPFLAGS="-I/root/src/include" LDFLAGS="-L/usr/local/lib -L/root/code/x86/sqlite"动态链接AUTOMAKE_OPTIONS=fo... 阅读全文
摘要:
ftp必须用二进制模式上传才可以sqlite3arm-linux-gcc hello.c -o hello.cgi -I /cgi/include -L /cgi/lib -static -lsqlite3 -lpthread -ldl 阅读全文
摘要:
用动态链接的方法: arm-linux-gcc hello.c -o hello.out -Wl,-dynamic-linker=/system/lib/ld-linux.so.3 并且拷贝文件到安卓系统目录下/system/lib/ld-linux.so.3 -static 静态链接 阅读全文
摘要:
安卓下执行交叉编译的可执行文件发现提示不允许。 原因是mount的方式问题,root后运行 su mount -o rw,remount /mnt/sdcard 就可以了 mount -o rw,remount / / 新版本系统 重新挂载根目录 阅读全文
摘要:
问题:undefined reference to `pthread_spin_init'解:修改CMakeCache.txt,CMAKE_EXE_LINKER_FLAGS原来为空,加上-lpthread -lrt -ldl 阅读全文
摘要:
原因是缺少库文件,解决办法:arm-linux-readelf -a helloword | grep NEEDED 拷贝so文件到安卓下或者arm-linux-gcc hello.c -o hello -static 阅读全文
摘要:
.├── aclocal.m4├── autoscan.log├── config.log├── config.status├── configure├── configure.in├── Makefile├── Makefile.am├── Makefile.in└── src ├── f... 阅读全文
摘要:
Cannyfunction [ canny ] = canny( rgb )temp=rgb2gray(rgb);canny=edge(temp,'canny');end灰度temp=rgb2gray(rgb);播放视频clear allsource = VideoReader('d:\v\\bus... 阅读全文
摘要:
查看进程ps -APID进程的sopmap -x pid 阅读全文
摘要:
网卡配置静态IP地址 编辑文件/etc/network/interfaces: sudo vi /etc/network/interfaces 并用下面的行来替换有关eth0的行:# The primary network interface auto eth0 iface eth0 inet st 阅读全文
摘要:
在百度搜索过的关键字后,经常在其他网页看到百度的推广广告,超级烦人而且涉及隐私,下面是去除方法C:\Windows\System32\drivers\etc下的hosts文件加入127.0.0.1cpro.baidu.com127.0.0.1cpro.baidustatic.com127.0.0.1... 阅读全文
摘要:
用海思的交叉编译工具交叉编译live555 ,结合海思例子venc中的H264部分,完成RTSP的视频数据发布。用vlc可以播放,但是实时性比较差,慢了5秒 阅读全文