What's xxxIn multivariate statistics and the clustering of data, spectral clustering techniques make use of the spectrum (eigenvalues) of the similari...
分类:
其他好文 时间:
2014-07-22 22:51:53
阅读次数:
193
PerformanceNow that we have a basic model for how things are working, let's consider some things that could go wrong that would make it slow. That wil...
分类:
其他好文 时间:
2014-07-22 22:51:16
阅读次数:
258
故事:用mac系统,但芯片厂商提供的方案里没有提供mac系统编译android,只好装了虚拟机。虚拟机里parallels desktop算是比较好用,不过坑爹的是,编译时期make命令挂了,提示"segmentation fail",Google未果。只...
分类:
移动开发 时间:
2014-07-22 08:37:35
阅读次数:
584
1. make时遇到一个标志位不被支持,需要升级gcc: yum update gcc 2. make modules_install时提示137错误: 需要增大虚拟机内存或swap分区。 3. make install时提示: [root@mon1 linux-3.15.5]# make install s...
分类:
系统相关 时间:
2014-07-22 08:13:35
阅读次数:
414
根据coreseek官方文档安装: http://www.coreseek.cn/products-install/install_on_macosx/ (1)在安装mmseg过程中,进行make操作的时候,突然报了以下错误信息: n?file?included?from?css/ThesaurusDict.c...
分类:
其他好文 时间:
2014-07-21 10:38:15
阅读次数:
286
写个随笔,备忘!拿到一个内核后,首先将其make为zImage,步骤: 1、将与要移植的系统的配置文件拷贝给.config cp xxx_xxx .config 2、修改Makefile,指定平台构架和交叉编译环境 vim Makefile ARCH ?=XXX ...
分类:
其他好文 时间:
2014-07-21 10:29:57
阅读次数:
294
Git在make的时候报错:Can‘t locate ExtUtils/MakeMaker.pm in @INC 解决方法如下: yum -y install perl-devel?perl-CPAN git 需要perl来编译。然后重新make Git Make时出现:tclsh failed; using unoptimized...
分类:
其他好文 时间:
2014-07-21 10:13:01
阅读次数:
375
1 obj-m += showpid.o2 obj-m += ps.o3 4 all:5 make -C /lib/modules/$(shell uname -r)/build M=$(shell pwd) modules6 clean:7 rm -rf *.o *.mod.c *...
分类:
其他好文 时间:
2014-07-19 17:23:58
阅读次数:
236
在编译Android的时候,经常看到这样的命令make -j8 2>&1 | tee build.log 其中 make 是编译命令,-j8 这里的 8 指的是线程数量,就是你要用几个线程去编译这个工程,一般会是 CPU核心数的2 倍。提示:开多了会卡死的!!!2是标准错误,&1是标准输出,2>.....
分类:
移动开发 时间:
2014-07-19 11:26:04
阅读次数:
268
kcov是在bcov基础上进行的,bcov已经很久没有维护了;首先需要下载依赖库libdwraft,然后在configure时候进行指定:./configure --with-libdwarf=/usr/local/lib然后make;make install(1)悲催的是编译过程中出现了错误‘PT...
分类:
其他好文 时间:
2014-07-19 00:35:24
阅读次数:
316