我正在尝试在Debian 9中构建我的项目(在Qt-Creator,Debian 8中) 我收到错误
/ usr / include / c ++ / 6 / cstdlib:75:错误:stdlib.h:没有这样的文件或目录
// Need to ensure this finds the C library's <stdlib.h> not a libstdc++
// wrapper that might already be installed later in the include search path.
#define _GLIBCXX_INCLUDE_NEXT_C_HEADERS
#include_next <stdlib.h>
#undef _GLIBCXX_INCLUDE_NEXT_C_HEADERS
apt-get install libstd*
没有解决问题。
答案 0 :(得分:0)
我在Qt Creator的项目的* .pro 文件中添加了QMAKE_CFLAGS_ISYSTEM = -I
,错误消失了。