Going from u to v or from v to u?Time Limit:2000MSMemory Limit:65536KTotal Submissions:15494Accepted:4100DescriptionIn order to make their sons brave,...
分类:
其他好文 时间:
2015-07-11 06:42:31
阅读次数:
144
昨天很晚的时候才终于发现其实Unkown USB Device并不是错误,只是个警告而已,所以我们不关心就可以,让Makefile继续往下走就可以,于是我尝试mbs,s110,cload和firmware的下载,执行如下命令:
make flash
make flash_s110
make flash_mbs
make flash_cload
具体执行过程如下:
bitcraze@...
分类:
系统相关 时间:
2015-07-11 01:08:54
阅读次数:
334
http://www.hiredintech.com/system-design/Scopethe problem: Don't make assumptions; Ask questions; Understand the constraints and use cases.Sketch up a...
分类:
其他好文 时间:
2015-07-10 22:03:38
阅读次数:
136
条件语句可以根据一个变量的值来控制make执行或者忽略Makefile的特定部分。条件语句可以是两个不同变量、或者变量和常量值的比较。要注意的是:条件语句只能用于控制make实际执行的makefile文件部分,它不能控制规则的shell命令执行过程。Makefile中使用条件控制可以做到处理的灵活性...
分类:
其他好文 时间:
2015-07-10 18:56:36
阅读次数:
139
一.安装ipython1.升级pyton到2.7.0以上[root@python~]#yuminstallgccgcc-c++make-y
[root@python~]#wgethttps://www.python.org/ftp/python/2.7.5/Python-2.7.5.tar.bz2
[root@python~]#tarxfPython-2.7.5.tar.bz2
[root@python~]#cdPython-2.7.5
[root@pythonPython-2.7.5]#./..
分类:
编程语言 时间:
2015-07-10 17:03:18
阅读次数:
169
首先下载redis。http://redis.io/download这个是地址;>>> tar -zxvf redis.tar.gz>>> 切换到 redis的目录下面[root@eta-bmc1 local]# cd ./redis-3.0.2>>make>>cd src && make allm...
分类:
系统相关 时间:
2015-07-10 14:58:00
阅读次数:
170
其实,百度了好多资料,但都是垃圾,呵呵,我就不说话了。
为什么要手动用源码安装,而不是用sudo apt-get呢?没办法咯,官方的版本最新只有3.4的,我要3.4.3的。
呐怎么办呢?
好吧,其实我自己也没办法,只能借助文档里面的README,其实只需要看它就好了,很轻楚的4行代码,搞定!!!!./configure
make
make test
sudo make install
然后就是...
分类:
编程语言 时间:
2015-07-10 13:36:23
阅读次数:
177
Don't use runAllManagedModulesForAllRequests="true" when getting your MVC routing to workIt seems to be common advice to make your modules section of ...
分类:
其他好文 时间:
2015-07-10 12:52:39
阅读次数:
237
发现一个规律,凡是在上一级Makefile中这样执行:make -C xxx CFLAGS="$(CFLAGS)",那么在 xxx/Makefile 中对 CFLAGS 的设置就会不生效。 做个实验 建一个这样的目录: Makefile 的内容: CFLAGS=-I../xxx
all:
...
分类:
其他好文 时间:
2015-07-10 11:36:42
阅读次数:
137
下载和安装lua:(转自这里)
1. 下载最新版的lua-5.3.1.tar.gz 请点击(http://www.lua.org/ftp/),然后解压
2. 运行“终端”进入到该文件夹下 ,主要是cd 【文件夹名】
3.在“终端”输入 make macosx (回车)
4.在“终端”输入 make test (回车)
正常情况下会出现: src/lua -v
L...
分类:
系统相关 时间:
2015-07-10 11:31:33
阅读次数:
178