安装libsvm的时候用到了mex -setup,有的会报 Could not find
the 64-bit compiler. This may indicate that the "X64 Compilers and Tools" or the
Microsoft Windo...
分类:
其他好文 时间:
2014-05-24 03:59:31
阅读次数:
387
编译警告:This project was created using a version of
compiler that is not currently installed: 6.0.3 [C2000]. Another version of the
compiler will be used...
分类:
其他好文 时间:
2014-05-23 12:16:21
阅读次数:
3014
本文出自:http://blog.csdn.net/svitter
一开始做这个实验真是觉得各种简单- -就是一张状态转换图不停的跳来跳去。。后来发现我太天真了。。一个搞来搞去搞不清楚的bug是因为老师给的状态转换图坑了 - - 当然这肯定不怪老师因为我一开始做的时候居然没发现= =。
状态转换图我就暂且不贴了,另外两篇文章的地址如下:
Compiler_词法分析_表驱动法
C...
分类:
其他好文 时间:
2014-05-22 11:27:59
阅读次数:
273
DFA:
使用了表驱动法;
构造的表如下:
表驱动
num
.
E
+/-
other
0
1
6
-
-
-
1
1
2
5
-
-
2
2
-
3
-
-
3
-
-
-
4
--
4
5
-
-
-
-
5
5...
分类:
其他好文 时间:
2014-05-18 09:11:43
阅读次数:
264
在一种计算机环境中运行的编译器,能编译出在另外一种环境下运行的代码,我们就称这种编译器支持交叉编译。这个编译过程就叫交叉编译。简单地说,就是在一个平台上生成另一个平台上的可执行代码,而这种工具就是交叉编译器(cross
compiler)。这里需要注意的是所谓平台,实际上包含两个概念:体系结构(Ar...
分类:
其他好文 时间:
2014-05-17 22:38:58
阅读次数:
434
1、register修饰符暗示编译程序相应的变量将被频繁地使用,如果可能的话,应将其保存在CPU的寄存器中,以加快其存储速度。例如下面的内存块拷贝代码, /*
Procedure for the assignment of structures, */ /* if the C compiler .....
分类:
其他好文 时间:
2014-05-16 22:39:19
阅读次数:
269
以下摘自源文件经过以下几步生成可执行文件:1、预处理(preprocessor):对#include、#define、#ifdef/#endif、#ifndef/#endif等进行处理2、编译(compiler):将源码编译为汇编代码3、汇编(assembler):将汇编代码汇编为目标代码4、链接(...
分类:
其他好文 时间:
2014-05-16 09:42:22
阅读次数:
360
转自:http://my.oschina.net/zhuka/blog/124503No
compiler is provided in this environment. Perhaps you are running on a JRE
rather than a JDK?解决问题: 由于Ecl....
分类:
其他好文 时间:
2014-05-16 06:51:55
阅读次数:
519
在Eclipse中,出现“Access Restriction: The Type BASE64Encoder Is Not Accessible
Due To Restriction”错误。
解决方法:
点击Window-->Preferences-->Java-->Compiler-->Errors/Warns,设置Deprecated And Restri...
分类:
数据库 时间:
2014-05-15 05:22:58
阅读次数:
265
??
This is because forward declaration in C++: Compiler needs to know function prototype when function call is compiled. So, you need declare the called function first or place the called function be...
分类:
编程语言 时间:
2014-05-15 04:52:19
阅读次数:
211