码迷,mamicode.com
首页 >  
搜索关键字:compile    ( 3205个结果
JAVA Drp项目实战—— Unable to compile class for JSP 一波三折
交代下背景,电脑系统是64位的,用的是64位的Tomcat,安装是32位的Myeclipse10,java环境也是32位的,Tomcat在开始启动时会报这样一个错误,“Can't load IA 64-bit .dll on a AMD32-bit platform”,但是不耽误使用,最近在敲Drp项目中用到了底层接口的几个方法,这个错误导致项目不能正常运行了,所以就将64位的Tomcat换成了与java环境一样的32位的Tomcat,上面的问题就顺利解决了,于是继续自己的开发,但是当JSP页面启动时就出现...
分类:编程语言   时间:2014-08-07 19:03:20    阅读次数:286
php之include&require
通过 include 或 require 语句,可以将 PHP 文件的内容插入另一个 PHP 文件(在服务器执行它之前)。include 和 require 语句是相同的,除了错误处理方面: require 会生成致命错误(E_COMPILE_ERROR)并停止脚本include 只生成警告(E_....
分类:Web程序   时间:2014-08-07 18:04:10    阅读次数:209
makefile介绍
一般来说,无论是C、C++、还是pas,首先要把源文件编译成中间代码文件,在Windows下也就是 .obj 文件,UNIX下是 .o 文件,即 Object File,这个动作叫做编译(compile)。然后再把大量的Object File合成执行文件,这个动作叫作链接(link)。编译生成的中间...
分类:其他好文   时间:2014-08-06 18:08:21    阅读次数:254
Google protobuf
个人理解:定义.proto文件就是指明消息里包含的成员和类型,protoc会compile成相应的java文件包含interface和implementation class,然后在构建message的时候要使用builder,然后写到outputstream里。应用实例:ByteArrayOutp...
分类:其他好文   时间:2014-08-06 01:24:10    阅读次数:403
如何解决No architectures to compile for (ONLY_ACTIVE_ARCH=YES, active arch=x86_64, VALID_ARCHS=i386).
如何解决No architectures to compile for (ONLY_ACTIVE_ARCH=YES, active arch=x86_64, VALID_ARCHS=i386). 错误信息 No architectures to compile for (ONLY_ACTIVE_ARCH=YES, active arch=x86_64, VALID_ARCHS=i386...
分类:其他好文   时间:2014-08-05 11:10:29    阅读次数:212
Move semantics(C++11)
/*  * Compile with:   *       g++ move_test.c -o move_test -std=c++11 -g -fno-elide-constructors  * -fno-elide-constructors disabled the return value optimize.  */ #include #include class...
分类:编程语言   时间:2014-08-04 21:47:58    阅读次数:228
__builtin_constant_p
int __builtin_constant_p (exp); You can use the built-in function __builtin_constant_p to determine if a value is known to be constant at compile-time...
分类:其他好文   时间:2014-08-04 21:14:17    阅读次数:193
Installing MySQL Server
Installing MySQL ServerHere we will learn how to Compile and Install the MySQL Server from source code. After that we will Configure our server for ba...
分类:数据库   时间:2014-08-04 14:11:47    阅读次数:490
JUnit+Ant什么时候可以生成HTML形式的report
这个问题实际上很简单,但是之前也让我迷惑了一下。如果像我之前这篇日志里写的,如果在后面加上junitreport: 则只是生成xml格式的report,但是如果是在batchtest下面,如果所有的测试用例都执行完了,就会生成一系列的HTML报告,举例: <target name="test" depends="compile-tests" ...
分类:Web程序   时间:2014-08-02 12:49:33    阅读次数:240
match、search、sub、findall、compile区别
摘自网络,综合自己的理解: 函数名原型详解返回类型注意事项re.matchimport re re.match(pattern,string,flags)pattern:正则表达式,匹配成功,返回一个Match,否则返回一个None string:要匹配的字符串 flags...
分类:其他好文   时间:2014-07-29 10:27:38    阅读次数:218
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!