码迷,mamicode.com
首页 >  
搜索关键字:make menucomfig    ( 11169个结果
Lua:使用MinGW编译Lua5.2.3
在Windows下使用MinGW64,或者TDM64-GCC进行编译,本来以为make mingw就行了,没想到出了点小问题,让人费解:referhttp://lua-users.org/lists/lua-l/2006-12/msg00255.html解决方法也是太简单了:* build$ cd ...
分类:其他好文   时间:2014-10-28 00:37:44    阅读次数:167
OpenCV2.3.1在CentOS6.5下的安装
安装的linux版本是centos6.5,选择的是opencv2.3.1。不是很新的版本。因为在安装opencv2.4.9的时候,make的过程中出现了问题.   一:安装依赖包 依赖包用yum安装就可以了,需要以下安装包: yum install cmake gcc gcc-c++ gtk+-devel gimp-develgimp-devel-tools gimp-help-brows...
分类:其他好文   时间:2014-10-27 22:59:22    阅读次数:318
Some words about Qt DOM Node, Element and Attribut
Add Instruction Node Every valid XML must contain processing instruction. XML is widely used for HTML, SVG, XLS etc. So make sure your XML file has valid instruction of its type and encoding. The f...
分类:其他好文   时间:2014-10-27 21:27:17    阅读次数:155
10.24工作笔记——解决linux_jni编译报错问题
公司在用opus开源库,所以遇到了一些问题。 我将新下载的opus1.1替换掉老版本之后,单独编译opus没问题,可是编译相关的文件就会报错。 错误信息如下:g++ -Wall -fPIC -shared libusc_jni.o libusc.a ../api/libopus.a ../api/libspeex.a ../api/libamrnb.a ../api/libpcre.a -o li...
分类:系统相关   时间:2014-10-27 21:24:38    阅读次数:241
redis-2.8-17安装配置过程和一些错误
redis安装过程:正常前面3步应该没有问题,主要的问题是执行make的时候,出现了异常。 异常一: make[2]:cc:Commandnotfound 异常原因:没有安装gcc 解决方案:yuminstallgcc-c++ 异常二: zmalloc.h:51:31:error:jemalloc/jemalloc.h:Nosuchfileordirectory 异常原因:一些编..
分类:其他好文   时间:2014-10-27 19:40:46    阅读次数:172
Go中的系统Signal处理
package mainimport "fmt"import "os"import "os/signal"import "syscall"func main() { go SignalProc() done := make(chan bool, 1) for { select { case <-.....
分类:其他好文   时间:2014-10-27 19:27:09    阅读次数:139
pprof 查看goroutine
package mainimport ( "net/http" "runtime/pprof")var quit chan struct{} = make(chan struct{})func f() { <-quit}func handler(w http.ResponseWriter, r...
分类:其他好文   时间:2014-10-27 17:15:56    阅读次数:158
在Linux上自行编译安装apache
1.获取软件:http://httpd.apache.org/tarxfhttpd-2.2.9.tar.gz2.安装步骤:解压源文件:tarxfhttpd-2.2.9.tar.gz cdhttpd-2.2.9 ./configure--prefix=/usr/local/apache--enable-so--enable-rewrite make makeinstall,到此安装完成, 然后进入/usr/local/apache/bin执行 ./ap..
分类:Web程序   时间:2014-10-27 07:04:54    阅读次数:294
A Tour of Go Making slices
Slices are created with themakefunction. It works by allocating a zeroed array and returning a slice that refers to that array:a := make([]int, 5) //....
分类:其他好文   时间:2014-10-27 01:44:02    阅读次数:183
【RMAN】使用RMAN增量备份刷新 Standby Database
Step 1: Create the Incremental Backup RMAN> BACKUP DEVICE TYPE DISK INCREMENTAL FROM SCN 750983 DATABASE FORMAT '/tmp/incr_for_standby/bkup_%U';   Step 2: Make the Incremental Backup Accessib...
分类:数据库   时间:2014-10-27 00:36:53    阅读次数:230
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!