标签:des http io os 使用 ar strong for 文件
目录 |
目的:为了方便调试qt的代码!VS比Linux gdb好使多了。
最好使用VS2008+,它的安装包自带了Windows SDK,不要用过时的VS2005(后者需要额外安装Windows SDK)
Note:最新版本已经是qt-4.8.6,而且官方发布了WinCE的预编译版本。看起来似乎Digia已经解决了icu库在WinCE上的交叉编译问题?(待确认)
Note2:VS2008+(VS2010,乃至VS2012、VS2013)似乎默认已经自带了Windows SDK,不像2005还需要另外单独安装。
从压缩包qt-everywhere-opensource-src-4.8.2.tar.gz解压:
——如果使用的winrar程序有问题,可能导致解压出来的文件名有些变成了*.cpp0000644,使用一个Ruby脚本批量修正此问题(需要安装Ruby 1.9.3运行环境)
# Recursive scan a dir, & perform each-file rename operation: def batch_files_from_dir(basepath) sub_dirs = Array.new Dir.new(basepath).entries.each { |subpath| path = File.join(basepath, subpath) if File.file?(path) then if /0000[0-9]{3}$/.match(path) then puts "#{path}" new_path = path.gsub(/0000[0-9]{3}$/, ) File.rename(path, new_path) puts "\t--->#{new_path}" end elsif subpath!="." and subpath!=".." and File.directory?(path) then batch_files_from_dir(path) end } end ARGV.each{ |path| batch_files_from_dir( path ) }
设置QtWebKit为启动项目,调试命令行为demos/browser程序的完全路径,启动路径设为Qt bin。
Windows平台上编译Qt-4.8.x Debug版注意事项
标签:des http io os 使用 ar strong for 文件
原文地址:http://blog.csdn.net/cteng/article/details/39313339