Qt nmake:错误 C3203:"map":非专用类模板不能用作模板参数"base"的模板参数,预期为真实类型

Qt nmake: error C3203: 'map': unspecialized class template can't be used as a template argument for template parameter 'base', expected a real type

本文关键字:参数 base 类型 真实 map C3203 专用 不能 Qt nmake 错误      更新时间:2023-10-16
当我

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

C:Program Files (x86)Microsoft Visual Studio 14.0VCINCLUDEhash_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.0VCINCLUDEhash_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-20154.8.6msvc2015src3rdpartyclucenesrcCLucene/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-20154.8.6msvc2015src3rdpartyclucenesrcCLucene/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-20154.8.6msvc2015src3rdpartyclucenesrcCLucene/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-20154.8.6msvc2015src3rdpartyclucenesrcCLucene/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.0VCBINcl.EXE"' : return code '0x2'
Stop.
NMAKE : fatal error U1077: '"C:Program Files (x86)Microsoft Visual Studio 14.0VCBINnmake.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.

我已经按照这些步骤设置了Qt,但在步骤6中遇到了错误。

有什么想法吗?我很感激。

这是使用

Visual Studio 14.0 编译时 QT 5.5 之前的一个错误。

我猜您正在尝试编译 4.8 版。

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

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

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