尝试在Qt中升级Debian后构建项目

时间:2017-11-13 10:57:20

标签: c++ qt debian

我正在尝试在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*没有解决问题。

1 个答案:

答案 0 :(得分:0)

我在Qt Creator的项目的* .pro 文件中添加了QMAKE_CFLAGS_ISYSTEM = -I,错误消失了。