自從 Qt 被 Nokia 併購後,似乎越來越活耀(?!),網站也改版了,不過以前的都會把 source code 版本直接放一個 link 出來,現在好像得去 ftp 下載,
編譯
官方的 binary 好像(不確定,我只試過 Qt SDK: Complete Development Environment 這包而已)只有給 mingw32 用的,如果想在 Windows 搭配 Visual C++ 使用,可以自己 compile ,請下載 qt-win-opensource-src-4.5.2.zip 這個檔案,不要下載 qt-all-opensource-src-4.5.2.tar.gz,編譯時可能會有下面的錯誤:
qscriptdebuggercodefinderwidgetinterface.cpp debugging\qscriptdebuggercodefinderwidgetinterface.cpp(43) : fatal error C1083: Cannot open include file: 'qscriptdebuggercodefinderwidgetinterface_p_p.h': No s uch file or directory qscriptdebuggercodefinderwidget.cpp debugging\qscriptdebuggercodefinderwidget.cpp(43) : fatal error C1083: Cannot op en include file: 'qscriptdebuggercodefinderwidgetinterface_p_p.h': No such file or directory qscriptdebugoutputwidgetinterface.cpp qscriptdebugoutputwidget.cpp qscriptbreakpointswidgetinterface.cpp qscriptbreakpointswidget.cpp qscriptbreakpointsmodel.cpp qscripterrorlogwidgetinterface.cpp qscripterrorlogwidget.cpp qscriptenginedebugger.cpp Generating Code... NMAKE : fatal error U1077: '"C:\Program Files\Microsoft Visual Studio 8\VC\BIN\c l.EXE"' : return code '0x2' Stop. NMAKE : fatal error U1077: '"C:\Program Files\Microsoft Visual Studio 8\VC\BIN\n make.exe"' : return code '0x2' Stop. NMAKE : fatal error U1077: 'cd' : return code '0x2' Stop.
而且編一次都要很久,禁不起這種錯誤打擊的!編譯可以使用這個指令,是我試過 ok 的:
configure -debug-and-release -no-sql-sqlite -no-qt3support -no-opengl -platform win32-msvc2005 -no-libtiff -no-dbus -no-phonon -no-phonon-backend -no-webkit
其中最重要的是要指定 -debug-and-release ,因為預設是不會產生 debug 版本,有時會有 debug 或是 trace 上的困擾。如果電腦上安裝多個開發環境,請透過 -platform win32-msvc2005 指定 toolchain
nmake 後就是看 CPU 運動了!不過 vc 似乎無法吃光四核心 + 4G Ram 的效能 :(
2 則留言:
應是I/O Bound!換SSD吧!XD
請參考這篇...XD 看來Linux有100%耶..
http://starryalley.homelinux.net/blog/index.php?/archives/1170-Compiling-opensource-QT-with-dual-physical-Intel-Xeon-E5405.html
張貼留言