使用英特尔C ++编译器为Win32编译Qt的错误,我做错了什么?

时间:2011-06-28 09:58:28

标签: c++ qt compilation intel

我已经打开了MSVS 2010命令提示符,我从那里运行了来自Intel Parallel Studio的ips-vars.cmd(它为ICC设置了环境),我从那里调用:

configure -ltcg -debug-and-release  -graphicssystem opengl -mp -platform win32-icc -no-s60

得到了这个:

Creating qmake...

Microsoft (R) Program Maintenance Utility Version 10.00.30319.01
Copyright (C) Microsoft Corporation.  All rights reserved.

    icl -Yuqmake_pch.h -FIqmake_pch.h -Fpqmake_pch.pch -c -Fo./  -W3 -nologo -O2    -I. -Igenerators -Igenerators\unix -Igenerators\win32 -Igenerators\mac -
    Igenerators\symbian  -IH:\Alex\Alex\Work\Qt\4.7.3\include -IH:\Alex\Alex\Work\Qt\4.7.3\include\QtCore  -IH:\Alex\Alex\Work\Qt\4.7.3\include -IH:\Alex\Alex\Work\
    Qt\4.7.3\include\QtCore  -IH:\Alex\Alex\Work\Qt\4.7.3\src\corelib\global  -IH:\Alex\Alex\Work\Qt\4.7.3\src\corelib\xml  -IH:\Alex\Alex\Work\Qt\4.7.3\mkspecs\win
    32-icc   -IH:\Alex\Alex\Work\Qt\4.7.3\tools\shared  -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_LITE_COMPONENT -DQT_NODLL -DQT_NO_STL  -DQT_NO_COMPRESS -DUNICO
    DE -DHAVE_QCONFIG_CPP -DQT_BUILD_QMAKE -DQT_NO_THREAD  -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT -DQT_NO_DATASTREAM -DQT_NO_PCRE -DQT_BOOTSTRAPPED  -DQLIBRARYINFO_EP
    OCROOT /Zc:forScope -DQMAKE_OPENSOURCE_EDITION H:\Alex\Alex\Work\Qt\4.7.3\src\corelib\plugin\qsystemlibrary.cpp
    qsystemlibrary.cpp
    Catastrophic error: cannot open precompiled header file "qmake_pch.pchi"

    compilation aborted for H:\Alex\Alex\Work\Qt\4.7.3\src\corelib\plugin\qsystemlibrary.cpp (code 4)
    NMAKE : fatal error U1077: '"C:\Program Files\Intel\Parallel Studio 2011\Composer\bin\ia32\icl.EXE"' : return code '0x4'
    Stop.

任何想法有什么不对? 谢谢你看看。

1 个答案:

答案 0 :(得分:2)

选项-Yu表示“使用预编译头”。

好像你没有先创建一个预编译文件(-Yc)。那个人可能不应该以{{1​​}}结束。