Tôi đã tải xuống mã nguồn và muốn biên dịch tệp của máy quét. Nó tạo ra lỗi này:
[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.
Và tôi đã cố gắng sử dụng trình biên dịch khác để biên dịch nó, nhưng nó xuất hiện các lỗi khác nhau.
[meepo@localhost cs143-pp1]$ g++ -o scan lex.yy.c -ll
/usr/bin/ld: cannot find -ll
collect2: ld returned 1 exit status
Hệ điều hành của tôi là 3.0-ARCH, tôi không biết tại sao điều này lại xảy ra. Làm cách nào để sửa lỗi?
#include <stdbool.h>