如果你编译了一个VC2008的默认的CRT/MFC的应用程序,如果目标部署电脑上没有安装相应的VC2008的动态库,当运行你的程序的时 个,会出现如下错误信息.这是因为程序使用了基于VC2008的CRT/MFC的动态库版本.解决这个问题,有三种方法:1.使用静态链接库编译(缺点,生成的exe的程序过... Read More
posted @ 2015-12-29 22:16 findumars Views(1587) Comments(0) Diggs(1)
在链接标志中加入参数: /SUBSYSTEM:WINDOWS,"5.01"在ide环境下:项目属性-常规-平台工具集-Visual Studio 2013 - Windows XP (v120_xp)参考:https://msdn.microsoft.com/query/dev12.query?ap... Read More
posted @ 2015-12-29 22:10 findumars Views(1286) Comments(0) Diggs(0)
官网:http://www.openssl.org/ 得到源码: git clone https://github.com/openssl/openssl 一、用vc编译器编译: 1、下载nasm: http://www.nasm.us/ 2、下载perl: http://www.perl.org/ Read More
posted @ 2015-12-29 22:07 findumars Views(1139) Comments(0) Diggs(0)
下载: git://github.com/bagder/curl.git openssl: openssl编译 for linux or mingw:./buildconf./configure --with-ssl="$PREFIX"makefor android:./buildconf../co Read More
posted @ 2015-12-29 22:06 findumars Views(1364) Comments(0) Diggs(0)
1. 修改工程文件 .pro ,加入翻译源文件 hello_world.ts: TRANSLATIONS += \ Resource/translations/hello_world.ts写代码时需要注意下面两点:2. 源码用 utf-8 字符集3. 源码中需要翻译的字符串必须用英文(不能有中文或其... Read More
posted @ 2015-12-29 21:58 findumars Views(2256) Comments(0) Diggs(0)