码迷,mamicode.com
首页 >  
搜索关键字:no rule to make targ    ( 12102个结果
linux编译安装LAMP
Linux安装Apache+MySQL+PHP 安装部分依赖 安装apr(可选) # tar -xf apr-1.5.0.tar.bz2 # cd apr-1.5.0 #./configure --prefix=/usr/local/apr //指定其安装位置 # make && make install 安装apr-util # tar -xf apr-util-1.5.3.ta...
分类:系统相关   时间:2014-06-28 07:35:28    阅读次数:386
php安装curl问题
这两天在服务器为php安装curl拓展是遇到一个问题。很是纠结了一下...系统是centos6.464位系统,php版本5.3.3,因需要安装curl拓展,但是使用5.3.3的源码包安装curl拓展时make报错:/php-5.3.3/ext/curl/interface.c:319:警告:初始化丢弃了指针目标类型的限定/php-5.3.3/ext/cu..
分类:Web程序   时间:2014-06-28 00:57:26    阅读次数:310
effective c++ 条款4 make sure that objects are initialized before they are used
1 c++ 类的数据成员的初始化发生在构造函数前class InitialData{ public: int data1; int data2; InitialData(int a, int b) { ...
分类:编程语言   时间:2014-06-27 22:31:42    阅读次数:375
Ant 概念
Ant的概念 可能有些读者并不连接什么是Ant以及入可使用它,但只要使用通过Linux系统得读者,应该知道make这个命令。当编译Linux内核及一些软件的源程序时,经常要用这个命令。Make命令其实就是一个项目管理工具,而Ant所实现功能与此类似。像make,gnumake和nmake这些编译工具...
分类:其他好文   时间:2014-06-27 19:03:53    阅读次数:166
Reprot中的五个Trigger说明
Report Trigger1.1 Which report trigger to useAs a general rule, any processing that will affect the data retrieved by the report should be performed i...
分类:其他好文   时间:2014-06-27 15:14:32    阅读次数:214
FindBugs:Compiler output path for module can not be null. check your module/project settings问题原因
可能很多人在使用Android studio 中的插件中会发现这个错误提示:Compiler output path for module can not be null. check your module/project settings。 会报这个错误是因为你工程没有make。因为Findbugs并不是针对你的源代码进行检测,而是根据编译后文件(如:class.dex)进行检测。 所以如...
分类:数据库   时间:2014-06-27 09:42:01    阅读次数:303
lxc-config: error while loading shared libraries liblxc.so.1
转载请注明出处:http://www.openext.org/2014/06/lxc-erro1#tar zxvf lxc-xxx.tar#./autogen#./configure –prefix=/usr/local/lxc#make#make install#lxc-lsthe error:#echo “/usr/local/lxc/lib” >> /etc/ld.so.conf#ldcon...
分类:其他好文   时间:2014-06-27 08:36:38    阅读次数:156
Spark SQL Hive Support Demo
前提:1、spark1.0的包编译时指定支持hive:./make-distribution.sh --hadoop 2.3.0-cdh5.0.0 --with-yarn--with-hive--tgz2、安装完spark1.0;3、安装与hadoop对应的CDH版本的hive;Spark SQL ...
分类:数据库   时间:2014-06-26 11:24:11    阅读次数:564
intel dpdk IPv4 Fragmentation Sample Application 测试
在上一篇中testpmd程序已经测试成功的情况下,来到examples/ipvr_frag目录中。 确认环境变量RTE_SDK、RTE_TARGET都正确,执行make。 一、一个逻辑核(lcore)处理一个端口(port) ./build/app/ipvr_frag -c 0x1 -n 4 -- -p 0x1 默认是一个队列 下图是官方对参数p、q的说明文档截图 运行结果如下图...
分类:移动开发   时间:2014-06-26 10:27:38    阅读次数:314
Oracle的优化原理
先说明一下,ORACLE有一个优化器(Optimizer),ORACLE的优化机理就是从Optimizer开始的。 明确两个概念:Optimizer 对ORACLE的优化方式有两种,一种是基于规则的,我们称为RBO(Rule-Based Optimization),一种是基于代价的CBO(Cost-Based Optimization),我们从字面就可基本理解这两个优化方式的含义,不错,RB...
分类:数据库   时间:2014-06-26 06:56:01    阅读次数:303
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!