码迷,mamicode.com
首页 >  
搜索关键字:make    ( 11169个结果
最大最短距离问题
问题:There are n points in the plane. Your task is to pick k points (k>=2), and make the closest points in these k points as far as possible. 输入:For eac...
分类:其他好文   时间:2015-05-17 16:31:44    阅读次数:170
Mac OS X 上的安装Lua开发环境
测试Lua环境是否已经安装:adeMacBook-Pro:perl_dev apple$ lua-bash: lua: command not foundView Code如果没有的话就到lua官方去下载:(网址:http://www.lua.org/download.html)参考说明:make的...
分类:系统相关   时间:2015-05-17 12:12:35    阅读次数:243
cmake安装MySQL
1、编辑脚本cmake_mysql_install.sh,输入以下内容:#!/bin/bash#下载并安装makeyum -y install gcc #排除错误:configure: error: in `/usr/local/src/make-4.1': configure: error...
分类:数据库   时间:2015-05-17 09:15:55    阅读次数:245
UDK游戏开发基础命令
编译全量重新编译Debug版本UnrealScript脚本 UDK.exe make -debug全量重新编译Release版本UnrealScript脚本 UDK.exe make -release增量重新编译Debug版本UnrealScript脚本 UDK.exe make -debug...
分类:其他好文   时间:2015-05-16 20:13:36    阅读次数:193
源码安装 mysql5.1
shell> groupadd mysqlshell> useradd -g mysql mysqlshell> gunzip cd mysql-VERSIONshell> ./configure --prefix=/usr/local/mysqlshell> makeshell> make in....
分类:数据库   时间:2015-05-16 18:05:53    阅读次数:114
CentOS-6.4 安装 PHP Memcached 扩展
一,安装Libmemcached#cd libmemcached-1.0.16#./configure -prefix=/usr/local/libmemcached -with-memcached=/usr/local/memcached/bin/memcached#make#make insta...
分类:Web程序   时间:2015-05-16 16:24:50    阅读次数:157
CentOS搭建socket5代理服务器
1.安装socket5依赖包yum -y install gcc automake make pam-devel openldap-devel cyrus-sasl-devel2.下载ss5并安装下载官网:http://ss5.sourceforge.net/软件包:http://iweb.dl.s...
分类:其他好文   时间:2015-05-16 13:20:53    阅读次数:328
OpenWrt编译
OpenWrt编译简单过程1,OpenWrt编译环境准备sudo apt-get install gcc g++ binutils patch bzip2 flex bison make autoconf gettext texinfo unzip sharutils subversion libn...
分类:其他好文   时间:2015-05-16 13:20:20    阅读次数:121
排查源码编译错误的一些技巧
源码编译时有错误出现在 Linux 下是很正常的事,关键是要懂得查看错误信息。一般 Linux 下的错误主要是由路径、权限、链接库造成的,可以针对这些内容进行筛选,找出出错的原因并加以解决。对于编译一些时间长,输出多的库或程序,可以使用 make 2>&1 | tee build.log 来在文件和控制台同时输出 标准输出、标准错误输出 然后在log日志文件中直接搜索/error /ERROR /A...
分类:其他好文   时间:2015-05-16 01:32:04    阅读次数:129
Linux kernel编译指南
最近帮一个项目编译内核,特别学习了一下,记下了过程。如果问题,可以及时联系我编译命令1.清理工作目标 make clean: 删除编译中间文件,但是保留配置 make mrproper:删除包括配置文件的所有构建文件 make distclean:执行mrproper所做的一切,并删除备份文件2.配置内核 make menuconfig:文本图形方式配置内核 make oldconfig:...
分类:系统相关   时间:2015-05-15 20:01:02    阅读次数:405
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!