3

Qt Creator 5.2.0 (MSVC 2010、32 ビット) と mingw48_32 を使用しています。アプリのインストーラーを作成しようとしていますが、binarycreator をコンパイルできません。公式リンクからソース コードをダウンロード します。プロジェクトを実行すると、.o を含むファイルのみが表示され、.exe ファイルは表示されません。次のエラーが表示されます。

c:/qt/qt5.2.0/tools/mingw48_32/bin/../lib/gcc/i686-w64-mingw32/4.8.0/../../../../i686-w64-mingw32/bin/ld.exe: cannot find -linstaller

その後もエラーが続きますが、これを直せば直ると思います。以下は次のとおりです。

collect2.exe: error: ld returned 1 exit status
Makefile.Release:84: recipe for target 'bin\binarycreator.exe' failed
mingw32-make[1]: *** [bin\binarycreator.exe] Error 1
mingw32-make[1]: Leaving directory 'C:/Qt/Installer/installer-framework-installer-framework/tools/build-binarycreator-Desktop_Qt_5_2_0_MinGW_32bit-Release'
makefile:34: recipe for target 'release' failed
mingw32-make: *** [release] Error 2
20:30:45: The process "C:\Qt\Qt5.2.0\Tools\mingw48_32\bin\mingw32-make.exe" exited with code 2.
Error while building/deploying project binarycreator (kit: Desktop Qt 5.2.0 MinGW 32bit)
When executing step 'Make'

もし私を助けることができるなら、お願いします。

4

1 に答える 1

5

アプリケーションのインストーラーをビルドするには、インストーラー フレームワークをコンパイルする必要はありません。事前にコンパイルされたものを使用するだけです。

次のファイルが含まれています [ /bin ]:

  • archivegen.exe
  • バイナリクリエーター.exe
  • インストーラーベース.exe
  • レポゲン.exe

いくつかの例もあります。バージョン 1.4.0 をダウンロードするためのリンクは次のとおりです http://download.qt-project.org/official_releases/qt-installer-framework/1.4.0/

于 2014-01-20T17:15:43.047 に答える