Qt nmake:错误C3203:' map&#39 ;:非专业化的类模板不能用作模板参数' base'的模板参数,期望是真正的类型

时间:2017-10-11 15:30:38

标签: c++ qt templates

我在尝试编译Qt时在nmake中发出VS2015 x86 Native Tools Command Prompt命令时遇到此问题:

C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\hash_map(17): error C2338: <hash_map> is deprecated and will be REMOVED. Please use <unordered_map>. You can define _SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS to acknowledge that you have received this warning.
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\hash_set(17): error C2338: <hash_set> is deprecated and will be REMOVED. Please use <unordered_set>. You can define _SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS to acknowledge that you have received this warning.
c:\Qt-2015\4.8.6\msvc2015\src\3rdparty\clucene\src\CLucene/util/VoidMap.h(228): error C2923: 'std::map': 'std::_Tree<std::_Tmap_traits<_Kty,_Ty,_Pr,_Alloc,false>>::_Compare' is not a valid template type argument for parameter '_Pr'
        with
        [
            _Kty=lucene::index::IndexReader::CloseCallback,
            _Ty=void *,
            _Pr=lucene::index::IndexReader::CloseCallbackCompare,
            _Alloc=std::allocator<std::pair<const lucene::index::IndexReader::CloseCallback ,void *>>
        ]
c:\Qt-2015\4.8.6\msvc2015\src\3rdparty\clucene\src\CLucene/index/IndexReader.h(96): note: see reference to class template instantiation 'lucene::util::CLSet<lucene::index::IndexReader::CloseCallback,void *,lucene::index::IndexReader::CloseCallbackCompare,lucene::index::IndexReader::CloseCallbackCompare,lucene::util::Deletor::Dummy>' being compiled
c:\Qt-2015\4.8.6\msvc2015\src\3rdparty\clucene\src\CLucene/util/VoidMap.h(229): error C2923: 'std::map': 'std::_Tree<std::_Tmap_traits<_Kty,_Ty,_Pr,_Alloc,false>>::_Compare' is not a valid template type argument for parameter '_Pr'
        with
        [
            _Kty=lucene::index::IndexReader::CloseCallback,
            _Ty=void *,
            _Pr=lucene::index::IndexReader::CloseCallbackCompare,
            _Alloc=std::allocator<std::pair<const lucene::index::IndexReader::CloseCallback ,void *>>
        ]
c:\Qt-2015\4.8.6\msvc2015\src\3rdparty\clucene\src\CLucene/util/VoidMap.h(230): error C3203: 'map': unspecialized class template can't be used as a template argument for template parameter 'base', expected a real type
NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\cl.EXE"' : return code '0x2'
Stop.
NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\nmake.exe"' : return code '0x2'
Stop.
NMAKE : fatal error U1077: 'cd' : return code '0x2'
Stop.
NMAKE : fatal error U1077: 'cd' : return code '0x2'
Stop.
NMAKE : fatal error U1077: 'cd' : return code '0x2'
Stop.

我已按照these步骤设置了Qt,并且我在第6步遇到了错误。

有什么想法?我很感激。

1 个答案:

答案 0 :(得分:1)

使用visual studio 14.0编译时,这是5.5版之前的QT中的错误。

我猜你正在尝试编译4.8版本。

请查看以下链接....您可以看到错误。

https://bugreports.qt.io/browse/QTBUG-45961

您可能需要下载Qt5.5或更高版本才能使用visual studio 14.0进行编译。