错误:未知类型名称'bool'

时间:2011-11-15 07:50:07

标签: c gcc lex

我下载了源代码并希望编译扫描程序文件。它产生了这个错误:

[meepo@localhost cs143-pp1]$ gcc -o lex.yy.o lex.yy.c -ll
In file included from scanner.l:15:0:
scanner.h:59:5: error: unknown type name ‘bool’
In file included from scanner.l:16:0:
utility.h:64:38: error: unknown type name ‘bool’
utility.h:74:1: error: unknown type name ‘bool’
In file included from scanner.l:17:0:
errors.h:16:18: fatal error: string: No such file or directory
compilation terminated.

我尝试使用不同的编译器来编译它,但它出现了不同的错误。

[meepo@localhost cs143-pp1]$ g++ -o scan lex.yy.c -ll
/usr/bin/ld: cannot find -ll
collect2: ld returned 1 exit status

我的操作系统是3.0-ARCH,我不知道为什么会这样。如何修复错误?

4 个答案:

答案 0 :(得分:109)

C90不支持布尔数据类型。

C99确实包含了以下内容:

#include <stdbool.h>

答案 1 :(得分:50)

C99,如果你有

#include <stdbool.h> 

如果编译器不支持C99,您可以自己定义:

// file : myboolean.h
#ifndef MYBOOLEAN_H
#define MYBOOLEAN_H

#define false 0
#define true 1
typedef int bool; // or #define bool int

#endif

(但请注意,此定义会更改bool类型的ABI,因此链接到使用正确定义的bool编译的外部库可能会导致难以诊断的运行时错误。 / p>

答案 2 :(得分:4)

代码中的某处有一行#include <string>。这本身就告诉你程序是用C ++编写的。因此,使用g++优于gcc

对于缺少的库:如果可以找到名为libl.so的文件,则应该在文件系统中查看。使用locate命令,尝试/usr/lib/usr/local/lib/opt/flex/lib,或使用暴力find / | grep /libl

找到文件后,必须将目录添加到编译器命令行,例如:

g++ -o scan lex.yy.c -L/opt/flex/lib -ll

答案 3 :(得分:4)

只需添加以下内容:

#define __USE_C99_MATH

#include <stdbool.h>