码迷,mamicode.com
首页 >  
搜索关键字:make    ( 11169个结果
tpcc-mysql 对percona5.6进行压力测试
由于测试环境使用的是经过裁剪过的线上环境的ISO镜像,所以在初始阶段碰到了很多问题:第一个错误: #cd/root/tpcc-mysql/src&&make cc-w-O2-g-I.`mysql_config--include`-cload.c cc-w-O2-g-I.`mysql_config--include`-csupport.c ccload.osupport.o`mysql_config--li..
分类:数据库   时间:2015-06-02 15:30:21    阅读次数:199
FreeSwitch安装配置记录
安装FreeSwitch主要命令如下:git clone -b v1.2.stable git://git.freeswitch.org/freeswitch.git cd freeswitch/ ./bootstrap.sh && ./configure && make && make install && make hd-sounds-install && make hd-moh-insta...
分类:其他好文   时间:2015-06-02 13:30:25    阅读次数:1181
URAL 1039 Anniversary Party 树形DP 水题
1039. Anniversary PartyTime limit: 0.5 secondMemory limit: 8 MBBackgroundThe president of the Ural State University is going to make an 80'th Annivers...
分类:其他好文   时间:2015-06-02 00:16:48    阅读次数:200
Go 只读/只写channel
Go中channel可以是只读、只写、同时可读写的。//定义只读的channelread_only := make (<-chan int)//定义只写的channelwrite_only := make (chan<- int)//可同时读写read_write := make (chan int...
分类:其他好文   时间:2015-06-02 00:08:40    阅读次数:921
common Lisp学习笔记(十三)
lisp_chapter1313 Arrays, Hash Tables, and Proterty Lists13.2 array13.5 make-array13.6 string as vectors13.7 hash tables13.8 priority listlisp toolkit:...
分类:其他好文   时间:2015-06-01 22:15:36    阅读次数:163
Make 命令教程详解
make是工程构建的必要工具。Make的概念Make这个词,英语的意思是”制作”。Make命令直接用了这个意思,就是要做出某个文件。比如,要做出文件a.txt,就可以执行下面的命令。$ make a.txt但是,如果你真的输入这条命令,它并不会起作用。因为Make命令本身并不知道,如何做出a.txt,需要有人告诉它,如何调用其他命令完成这个目标。比如,假设文件a.txt 依赖于b.txt 和 c.t...
分类:其他好文   时间:2015-06-01 20:31:15    阅读次数:208
How to make changes to wcf service without breaking clients
在上一篇中讲解了,如何让一个WCF服务实现多个WCF数据契约,本篇介绍一个数据契约上的Name属性。先看一下,废话不多说,先看一下Demo。   1、数据契约 using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Se...
分类:其他好文   时间:2015-06-01 11:36:07    阅读次数:118
Linux python 配置
到官方网站下载源码。比如:wgethttp://www.python.org/ftp/python/2.7.8/Python-2.7.8.tgz解压源码包tar-zxvfPython-2.7.8.tgz编译cdPython-2.7.8./configure--prefix=/usr/local#指定了目录,如果不制定,可以使用默认的,直接运行./configure即可。make&&sudomakein..
分类:编程语言   时间:2015-06-01 01:02:03    阅读次数:181
./configure,make,make install的作用(转)
这些都是典型的使用GNU的AUTOCONF和AUTOMAKE产生的程序的安装步骤。./configure是用来检测你的安装平台的目标特征的。比如它会检测你是不是有CC或GCC,并不是需要CC或GCC,它是个shell脚本。make是用来编译的,它从Makefile中读取指令,然后编译。make in...
分类:其他好文   时间:2015-05-31 19:55:54    阅读次数:95
u-boot-2015.04 在tq2440上的移植(使用spl引导u-boot)
本次移植跟以往的不同之处是采用了spl来引导u-boot,参考了博客http://blog.csdn.net/fulinus/article/details/42738641下载链接:http://pan.baidu.com/s/1bnlRKgn使用方法:1、 编译 make tq2440_def....
分类:其他好文   时间:2015-05-31 12:18:21    阅读次数:195
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!