红联Linux门户
Linux帮助

bool类型定义在哪里(Linux系统)

发布时间:2016-04-30 15:33:10来源:linux网站作者:Timsley

默认在stdbool.h文件中。
如果想找到该文件,可以用以下命令去搜索:

find /usr/ -name "stdbool.h"


搜索结果如下:

/usr/lib/syslinux/com32/include/stdbool.h
/usr/lib/gcc/i686-linux-gnu/4.8/include/stdbool.h
/usr/include/c++/4.8/tr1/stdbool.h


如果你的文件里面引用了stdbool.h文件,但编译的时候,提示没有找到该文件,可以在编译的时候加上以下参数,你可以用上面查找到的路径:

-I/usr/lib/gcc/i686-linux-gnu/4.8/include/


本文永久更新地址:http://www.linuxdiyf.com/linux/20243.html