3

MS Visual Studio 2012 コンパイラで Qt 5.1 をセットアップしようとしています。VS Express をダウンロードしてインストールし (動作し、C++ コードを正常にコンパイルします)、Qt をインストールしました。

これは、何かをビルドしようとするときのコンソール出力です。

09:07:14: Running steps for project cube...
09:07:14: Starting: "C:\Qt\Qt5.1.0\5.1.0\msvc2012_64\bin\qmake.exe" C:\Qt\Qt5.0.2\5.0.2\msvc2012_64\examples\opengl\cube\cube.pro -r -spec win32-msvc2012 "CONFIG+=debug" "CONFIG+=declarative_debug" "CONFIG+=qml_debug"
09:07:15: The process "C:\Qt\Qt5.1.0\5.1.0\msvc2012_64\bin\qmake.exe" exited normally.
09:07:15: Starting: "C:\Qt\Qt5.1.0\Tools\QtCreator\bin\jom.exe" 
Usage: jom @commandfile
       jom [options] [/f makefile] [macro definitions] [targets]

nmake compatible options:
/A build all targets
/D display build information
/E override environment variable macros
/F <filename> use the specified makefile
/G display included makefiles
/H show help
/I ignore all exit codes
/K keep going - build unrelated targets on error
/N dry run - just print commands
/NOLOGO do not print logo
/P print makefile info
/R ignore predefined rules and macros
/S silent mode
/U print content of inline files
/L same as /NOLOGO
/W print the working directory before and after other processing
/X <filename> write stderr to file.
/Y disable batch mode inference rules

jom only options:
/DUMPGRAPH show the generated dependency graph
/DUMPGRAPHDOT dump dependency graph in dot format
/J <n> use up to n processes in parallel
/KEEPTEMPFILES keep all temporary files
/VERSION print version and exit
Error: unknown command line option '-' in arguments: '/L-IC:/QNX650/target/qnx6/usr/include'
09:07:15: The process "C:\Qt\Qt5.1.0\Tools\QtCreator\bin\jom.exe" exited with code 128.
Error while building/deploying project cube (kit: Desktop Qt 5.1.0 MSVC2012 64bit)
When executing step 'Make'
09:07:15: Elapsed time: 00:01.

以前、私は 5.0.2 で同じ問題を抱えていました (基本的には、それを強制終了して 5.1 をインストールした理由です)。

この種のエラーに関して、合理的なことは何もグーグルできませんでした。Visual Studio 内のどこかから 128 が伝播しているように見えますが、それが何であるかはわかりません。

これをデバッグして修正する方法を誰かが提案できますか?

ありがとう

4

1 に答える 1

2

...そして、問題を書き留めてから投稿を開始するよりも、問題を理解するのに役立つものは何もありません。

「/L-IC:/QNX650/target/qnx6/usr/include」は、実際には、マシンにインストールされている QNX SDK が環境変数をいじっていることを示しています。幸いなことに、Qt にはそれを処理する方法があります。[プロジェクト] タブに移動し、[ビルド環境] セクションを展開して、[MAKEFLAGS] 環境変数の設定を解除する必要があります。これで修正されます。

于 2013-08-23T18:57:50.210 に答える