上面介绍了项目的创建,这一节记录如何编译成安卓和iOS的app,这里先记录如何编译成iOS的。1.首先在终端中进入到项目的目录下,先看下编译命令有哪些功能,运行cocos compile -h: 1 bogon:HelloC1 dn9x$ cocos compile -h 2 usage: coco...
分类:
移动开发 时间:
2014-08-24 00:19:31
阅读次数:
450
参照MSDN定义:
/*?Compile?options?needed:?none.?Value?of?c?is?printed?with?a?decimal
point?precision?of?10?and?6?(printf?rounded?value?by?default)?to
show?the?difference
*/...
分类:
其他好文 时间:
2014-08-22 16:32:59
阅读次数:
255
// functional_mem_fun.cpp// compile with: /EHsc#include #include #include #include #include using namespace std;class StoreVals { int val;public:...
分类:
其他好文 时间:
2014-08-21 22:38:34
阅读次数:
211
”引用别人的文章“0.1 关于程序的编译和链接在此,我想多说关于程序编译的一些规范和方法,一般来说,无论是C、C++、还是pas,首先要把源文件编译成中间代码文件,在Windows下也就是 .obj 文件,UNIX下是 .o 文件,即 Object File,这个动作叫做编译(compile)。然后...
分类:
其他好文 时间:
2014-08-21 19:19:44
阅读次数:
162
1.U-boot?阶段 编译u-boot启动内核: u-boot-sunxi$make?distclean?CROSS_COMPILE=arm-linux-gnueabihf- u-boot-sunxi$make?Cubietruck?CROSS_COMPILE=arm-linux-gnueabihf- 将SD卡插入读卡器,挂载PC: $sudo...
分类:
其他好文 时间:
2014-08-21 13:30:04
阅读次数:
1473
当使用了百度地图sdk的app在64位机中运行时,会出现No architectures to compile for (ONLY_ACTIVE_ARCH=YES, active arch=x86_64, VALID_ARCHS=i386).的错误。这是一个兼容性的问题,要解决这个问题,我们需要将将...
分类:
移动开发 时间:
2014-08-21 11:01:33
阅读次数:
263
配置完环境变量的任意目录执行:cocos new mygame1 -p com.colin.mbgame -l cpp -d f:\cocos2dx\mbgame打包cocos compile -p android -j 4cocos run -p android -j 4
分类:
其他好文 时间:
2014-08-20 17:44:42
阅读次数:
179
XPATH//table[@id='rtFlight']//a[contains(text(),'¥')]//a[contains(text(),'¥')] 匹配页面a标签中包含内容有"¥"JETTYclean compile jetty -runclean compile jetty:run -D...
分类:
其他好文 时间:
2014-08-19 16:14:24
阅读次数:
167
如果你的项目使用的非 ARC 模式,则为 ARC 模式的代码文件加入 -fobjc-arc 标签。如果你的项目使用的是 ARC 模式,则为非 ARC 模式的代码文件加入 -fno-objc-arc 标签。添加标签的方法:打开:你的target -> Build Phases -> Compile S...
分类:
其他好文 时间:
2014-08-19 12:40:44
阅读次数:
188
今天在调代码的时候遇到了一个异常: javax.xml.transform.TransformerConfigurationException: Could not compile stylesheet - 致命错误: "无法变异样式表", 从网上找到了解决方案, 下面贴出来以备后用.
问题的出现是因为JDK自带的XALAN是阉割版的,很多功能没有,比如JAVA类型的方法调用。怎...
分类:
编程语言 时间:
2014-08-17 13:06:12
阅读次数:
217