我正在尝试使用Windows 10的Qt Creator 5.12.3中的IPP库构建一个简单的应用程序。我正在使用MinGW编译器。当我包含ipp.h
时,这真令人窒息。错误出现在ippdefs.h
保护的__cplusplus
的第一行:
#ifdef __cplusplus
extern "C" {
#endif
这是错误:
C:\Program Files (x86)\IntelSWTools\compilers_and_libraries_2019.4.245\windows\ipp\include\ippdefs.h:36: error: expected unqualified-id before string constant
extern "C" {
^~~
就像extern
关键字被重新定义一样。这在IPP中是已知的吗?有任何已知的解决方法吗?