码迷,mamicode.com
首页 >  
搜索关键字:prefix    ( 4726个结果
linux 经常使用命令
帮助信息./configure -help|grep mysql安装php./configure --prefix=/usr/local/fastphp --with-mysql=mysqlnd\--enable-mysqld\--with-gd\--enable-gd-native-ttf\--e...
分类:系统相关   时间:2015-01-29 19:13:42    阅读次数:243
Numpy 以及 Scipy 安装
1,安装软件途中需要安装这俩,首先升级下python到2.7 or newer从python官网下载相应的source package,$tar -xJf Python-2.7.xz$cd Python-2.7$./configure --prefix=$HOME/python-2.7/ --ena...
分类:其他好文   时间:2015-01-29 14:06:13    阅读次数:258
FFMPEG编译
# 静态库编译配置 ./configure --enable-static --disable-debug --disable-yasm --prefix=/usr/local/ffmpeg # 动态库编译配置 ./configure --enable-shared --prefix=/usr/local/ffmpeg # 编译并安装 make make install # 如果安装成功,安装的...
分类:其他好文   时间:2015-01-29 10:34:39    阅读次数:210
subsys_initcall宏定义的一个例子,acpi/bus.c里面。
static int __init acpi_init(void) {     int result;     if (acpi_disabled) {         printk(KERN_INFO PREFIX "Interpreter disabled.\n");         return -ENODEV;     }     acpi_kobj = kobjec...
分类:其他好文   时间:2015-01-27 23:35:26    阅读次数:332
acpi_init什么时候调用的?定义在哪个位置?
static int __init acpi_init(void) {     int result;     if (acpi_disabled) {         printk(KERN_INFO PREFIX "Interpreter disabled.\n");         return -ENODEV;     }     acpi_kobj = kobjec...
分类:其他好文   时间:2015-01-27 23:30:18    阅读次数:333
gcc4.9.2 for osx
安装GMP cd gmp*;mkdir build && cd build ../configure --prefix=/usr/local/gcc4.9.2 --enable-cxx make;make install 安装MPFR cd ../../mpfr*;mkdir build && cd build ../configure --prefix=/usr/local/gc...
分类:其他好文   时间:2015-01-27 18:38:27    阅读次数:185
LeetCode14——Longest Common Prefix
Write a function to find the longest common prefix string amongst an array of strings. 题目大意 写一个函数来找出所有字符串里最长的公共前缀。 难度系数:容易 实现 题目不难,基本思路大家都能想到,就是一些细节可能会遗漏。这个也没啥好算法,不管怎样,都需要一个个去比较。 所以没啥好说...
分类:其他好文   时间:2015-01-27 18:24:51    阅读次数:103
hack
1、Firefox@-moz-document url-prefix() { .selector { property: value; } }上面是仅仅被Firefox浏览器识别的写法,具体如:@-moz-document url-prefix() { .demo { color:lime; } }...
分类:其他好文   时间:2015-01-27 14:43:45    阅读次数:188
linux(ubuntu或Deepin等)+win7双系统升级win10出现grub解决办法
1,set root=(hd0,msdos11)2,set prefix=(hd0,msdos11)/boot/grub3,insmod /boot/grub/i386-pc/normal.mod(此处某些电脑可以省略i386-pc这项)4,normal5,选择进入一个操作系统进行彻底修复,否则再次...
分类:Windows程序   时间:2015-01-27 09:16:15    阅读次数:302
zabbix监控的安装
被监控端的安装与配置:tarzxfzabbix-2.4.1.tar.gzcdzabbix-2.4.1./configure--prefix=/usr/local/zabbix--enable-agent&&make&&makeinstall###########################################################################################cd/usr/local/zabbix..
分类:其他好文   时间:2015-01-26 23:01:21    阅读次数:469
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!