码迷,mamicode.com
首页 >  
搜索关键字:make menucomfig    ( 11169个结果
Makefile条件判断 ——————————【Badboy】
使用条件判断,可以让make根据运行时的不同情况选择不同的执行分支。条件表达式可以是比较变量的值,或是比较变量和常量的值。   一、示例   下面的例子,判断$(CC)变量是否"gcc",如果是的话,则使用GNU函数编译目标。   libs_for_gcc = -lgnu   normal_libs=   foo: $(objects)   ifeq($(CC),gcc)   $(C...
分类:数据库   时间:2014-08-20 09:20:46    阅读次数:271
在Eclipse之中调试FastDFS-storage
FDFS版本为5.031、首先在eclipse之中创建一个C/C++工程,取名为FastDFS_v5.032、将FastDFS源码解压后拷贝到新创建的工程目录下,然后在ecipse之中刷新下工程就可以看到新拷贝如的文件如下:3、修改工程目录下的make.sh,增加定位到绝对目录,并且去除编译优化(使...
分类:系统相关   时间:2014-08-19 18:32:45    阅读次数:295
mknod创建设备(加载新的设备驱动时候,通常会用到此命令)
mknod - make block or character special filesmknod [OPTION]... NAMETYPE [MAJOR MINOR] option 有用的就是-m 了 name 自定义 type 有b 和c 还有p 主设备号 次设...
分类:其他好文   时间:2014-08-19 18:26:25    阅读次数:184
Making Properties Nonenumerable
We implemented a Set class by using  "object id" properties to map objects.  Every object has a unique object id. In order to ensure the same object is added only once, we make the id a property of th...
分类:其他好文   时间:2014-08-19 12:53:24    阅读次数:200
How to create a Multi-device Site - some details
Definning the information architecture (commonly known as IA) and structure of the page.Adding design elements to make it responsive and look good acr...
分类:其他好文   时间:2014-08-19 12:39:14    阅读次数:203
跨浏览器插件框架FireBreath安装与使用之Mac下的插件
RequirementsCMakeversion 2.8.8 or later, from http://www.cmake.org/cmake/resources/software.html.Make sure to grab the Binary distribution (cmake-ver-...
分类:其他好文   时间:2014-08-19 10:44:04    阅读次数:205
Preloading an Image with jQuery--reference
Preloading images will make your application a bit faster by making it lightweight. It is very simple and easy to create and load DOM elements (in thi...
分类:Web程序   时间:2014-08-19 10:34:53    阅读次数:209
UVA - 11076 Add Again (重复元素的排列)
Summation of sequence of integersis always a common problem in Computer Science. Rather than computing blindly,some intelligent techniques make the task simpler. Here you have to find thesummation of ...
分类:其他好文   时间:2014-08-18 22:10:23    阅读次数:314
UBUNTU 下如何升级 gcc, g++
正如大家所知道的GCC并不支持"make uninstall". 一种推荐安装方式就是把GCC 安装在你自己指定的一个路径,当你不须要某个GCC版本号的时候你仅仅须要移除相应版本号就可以。如果你已经有一个老的版本号在你的系统中,最简单的方式就是: 1)加入?PPA(Personal Packag.....
分类:其他好文   时间:2014-08-18 20:22:12    阅读次数:184
Gentoo更新系统--排除特定的软件包
有选择地更新特定的类别/软件包并且忽略其他类别/软件包通过让emerge--sync在执行rsync的时候排除个别类别/软件包你需要在/etc/make.conf中赋予--exclude-from变量一个文件名,该文件应包含你想要排除的软件包。在/etc/portage/make.conf中指定包含排除软件包条目的文件:PORTAG..
分类:其他好文   时间:2014-08-18 16:34:13    阅读次数:225
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!