我正在使用cygwin64并在我的项目中包含MinGW64 / x86_64-w64-mingw32 / include文件夹。但是,当我在项目上运行make时,我收到以下错误:/cygdrive/c/MinGW64/x86_64-w64-mingw32/include/sys/types.h:10:2: error: #error Only Win32 target is supported!
我认为,由于types.h文件似乎在64位文件夹中,它将支持64位系统,所以我在这个系统中误解了什么。
它被捕获的types.h中的代码如下
#ifndef _WIN32
#error Only Win32 target is supported!
#endif