码迷,mamicode.com
首页 >  
搜索关键字:make modules_install    ( 11172个结果
bash: ./LM35_make_fs: Permission denied 解决办法
执行命令的时候 ./LM35_make_fs 遇到 permission denied, bash: ./LM35_make_fs: Permission denied权限的问题,可以运行 ls -l LM35_make_fs -rw-r--r-- 1 root r...
分类:其他好文   时间:2014-10-08 12:00:45    阅读次数:215
SICP 习题 (2.7) 解题总结 : 定义区间数据结构
SICP 习题 2.7 开始属于扩展练习,可以考虑不做,对后面的学习没什么影响。不过,如果上面的使用过程表示序对,还有丘奇计数你都可以理解的话,完成这些扩展练习其实没什么问题。习题2.7是要求我们协助Allysa完成interval的定义。Allysa定义了下面的过程来创建一个区间(interval),其中a是起点(就是较小的部分),而b是终点(就是较大部分)。(define (make-inte...
分类:其他好文   时间:2014-10-08 01:49:24    阅读次数:216
./configure,make,make install的作用
这些都是典型的使用GNU的AUTOCONF和AUTOMAKE产生的程序的安装步骤。./configure是用来检测你的安装平台的目标特征的。比如它会检测你是不是有CC或GCC,并不是需要CC或GCC,它是个shell脚本。make是用来编译的,它从Makefile中读取指令,然后编译。make in...
分类:其他好文   时间:2014-10-08 00:20:34    阅读次数:252
[翻译] USING GIT IN XCODE [6] 在XCODE中使用GIT[6]
USING GIT IN XCODEKEEPING IN SYNC WITH REMOTE REPOSITORIESAs you make changes in your local working copy you will want to keep them in sync with the r...
分类:其他好文   时间:2014-10-07 17:29:53    阅读次数:195
C# Self Injector into non managed process
Hey all,I'm gonna explain you how make a self injecting program in C#.I hope you guys thinks its usefull and have a nice readingRequirements:Visual St...
分类:其他好文   时间:2014-10-07 16:53:43    阅读次数:297
UVA 10453 Make Palindrome
Problem A Make Palindrome Input: standard input Output: standard output Time Limit: 8 seconds   By definition palindrome is a string which is not changed when reversed. "MADAM" is a nice example...
分类:其他好文   时间:2014-10-07 12:44:13    阅读次数:176
C++ multimap 的插入,遍历,删除
#include #include #include using namespace std; int main() { multimap authors; // 插入元素, 引入的头文件是 map authors.insert(make_pair( string("Evin"), // 这个是 Key string("Hi"))); authors.insert...
分类:编程语言   时间:2014-10-07 12:28:53    阅读次数:284
POJ 2762 tarjan缩点+拓扑
Going from u to v or from v to u?Time Limit:2000MSMemory Limit:65536KTotal Submissions:14566Accepted:3846DescriptionIn order to make their sons brave,...
分类:其他好文   时间:2014-10-06 19:01:31    阅读次数:193
sysbench - 单组件式测试工具
1 安装> ./configure --with-mysql-includes=/usr/local/mysql/include --with-mysql-libs=/usr/local/mysql/lib> make> make install2 运行时如报错;dyld: Library not ...
分类:其他好文   时间:2014-10-06 16:52:40    阅读次数:166
堆(优先队列)模板
包含向上、向下两种维护方向,方便手动维护堆中单个元素(STL的priority_queue和make_heap没有这种功能T_T)namespaceheap{#definep(x)((x)>>1)#definel(x)((x)structheap{Theap[maxn];intsize;bool(....
分类:其他好文   时间:2014-10-06 12:01:20    阅读次数:123
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!