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